2018-06-02: This content has been superseded by this newer post: Finally the definitive full-frame graphic commands for beamer in LaTeX. Look there for an updated version.
This snippet defines the custom command \fullframegraphic
. Paste it into the document preamble (header) of your presentation:
\newcommand{\fullframegraphic}[1]{ \begin{frame} \includegraphics[height=\textheight,width=\textwidth,keepaspectratio]{#1} \end{frame} }
Then, you can create a full-frame graphic slide anywhere (outside a frame) using
\fullframegraphic{image}
One thought on “Full-frame graphics on a LaTeX beamer presentation”
Comments are closed.