I am attempting to include a figure generated in another program. Sometimes, beamer randomly rotates an entire page to portrait when I attempt to do so. Evidently, whether it does so (or not) is determined by the attributes of the .eps file I am including. The really strange thing is that the size of the y-axis in the figure matters. As such, it may be a problem with the figure itself... I'm not sure. I have constructed a minimal example here below. I have also attached the files since they seem relevant.
Code: Select all
\documentclass{beamer}
\mode<presentation>
% Packages stuff:
\usepackage{graphics}
\begin{document}
\begin{frame}
\frametitle{Landscape?}
\begin{figure}
\begin{center}
\includegraphics{age_earnings_prof2.eps}
\end{center}
\end{figure}
\end{frame}
\begin{frame}
\frametitle{Why in Portrait?}
\begin{figure}
\begin{center}
\includegraphics{age_earnings_prof.eps}
\end{center}
\end{figure}
\end{frame}
\end{document}