I have a beamer slide where I have an image changing along with the text in the next column. For example:
\frame{\frametitle{testing cols}
\begin{columns}[t]
\column{5cm}
\begin{itemize}
\item On the next column you see a pic\pause
\item Pic is getting bigger! \pause
\item And it got even more big!
\end{itemize}
\column[T]{10cm}
\includegraphics<1>[width=20mm]{pic.png}
\includegraphics<2>[width=30mm]{pic.png}
\includegraphics<3>[width=40mm]{pic.png}
\end{columns}
}
I don't know if I'm doing it completely wrong, but I want the image to change to the corresponding one each time text in the corresponding column changes. How can I get this to work?
After some attempt,
\documentclass{beamer}
\begin{document}
\frame{\frametitle{testing cols}
\begin{columns}[t]
\column{5cm}
\begin{itemize}
\item On the next column you see a pic\pause
\item Pic is getting bigger! \pause
\item And it got even more big!
\end{itemize}
\column[T]{10cm}
\includegraphics[width=20mm]{pic.png}\pause
\llap{\includegraphics[width=30mm]{pic.png}}\pause
\llap{\includegraphics[width=40mm]{pic.png}}
\end{columns}
}
end{document}
The image gets overlayed after the text cycle is complete. Can I make them simultaneous?
\overprintor\llap– percusse Feb 16 '12 at 13:38