For the next few semesters I'll be making a lot of beamer presentations with a lot slides that are just a frame title and a figure. I am trying to make a command to make a lot faster to code and easier to read. Here is my first attempt:
\usepackage{graphicx}
\newcommand {\framedgraphic}[2] {
\begin{frame}{#1}
\begin{figure}
\begin{center}
\includegraphics{#2}
\end{center}
\end{figure}
\end{frame}
}
In this past I've have scaled manually with something like
\includegraphics[height=0.7\textheight]{table3a.png}
Through trial and error I have to find the right scaling to make the figure fill the slide. Is there a way I can automatically do this scaling without adding more arguments to my command? Including covering both wide and tall figures? Thanks!
BTW, here I'm using graphicx but I'm not really wed to it. I am just getting started in TeX and would love to learn any new ways of thinking of this problem.
\textheight. AFAIK there is no length which stores the rest of the height. – Martin Scharrer Feb 24 '11 at 16:32figureenvironment is for floating figures, which doesn't make sense in a presentation. They are not required for\includegraphicsto work. Simply remove them here. – Martin Scharrer Feb 24 '11 at 16:55\headheightand\footheight, but it seems that\textheight-\headheight-\footheightis bigger then the actual height you have available. – Caramdir Feb 24 '11 at 17:15figureis not a floating environment inside beamer – Feb 24 '11 at 21:41\includegraphics[width=.95\textwidth,height=\myheight,keepaspectratio]{image}where\myheight=\textheight- some guessed value. – Martin Scharrer Feb 24 '11 at 22:53keepaspectratioto take up the slack in the non-binding dimension. I'll post the solution as an edit above for you to cut in paste as a solution I can accept? – Richard Herron Feb 25 '11 at 03:37