I'm doing a scientific presentation with the beamer package and have two columns (the left one with text, the right one with several images) that are too long for one frame.
I want to use [allowframebreaks] . The code does compile, but in the resulting pdf, the text and images just disappear under the bottom of the frame and no new frame is made. Here's an example code:
\documentclass[18p]{beamer}
\newcommand{\graph}[2]{
\begin{figure}[H]
\begin{center}
\includegraphics[scale=#2]{#1} % #1= Name, #2=Size
\end{center}
\end{figure} }
\begin{frame}[allowframebreaks]{Analysis}
\begin{columns}
\column{0.5\textwidth}
\begin{itemize}
\item Once upon a time
\item in the magical land
\item of Equestria,
\item there were two regal sisters
\item who ruled together
\item and created harmony for all the land.
\item To do this,
\item the elder used her
\item unicorn powers
\item to raise the sun at dawn.
\item The younger
\item brought out the moon
\item to begin the night.
\end{itemize}
\column{0.5\textwidth}
\graph{rainbowdash.jpeg}{0.5}
\graph{20percentcooler.jpeg}{0.2}
\graph{molestia_hot_plot}{0.3}
\graph{cupcakes.jpeg}{0.6}
\end{columns}
\end{frame}
\end{document}
Is there any possibility to use [allowframebreaks] and columns at the same time?
Thanks! dervonnebenaan
columnis essentiallyminipageand does not allow breaks.\allowframebreaksis intended for things such as bibliographies that are internally generated but may spill over several frames. – Andrew Swann Jun 24 '13 at 08:58