General ⇒ dynamically changing images in beamer class
dynamically changing images in beamer class
I have used the following code but only the first image images.jpg gets displayed. I don't get the 2nd one. I don't get any error msg. Did I do some thing wrong? Do you need the output or images on any thing else?
\documentclass[10pt]{beamer}
\mode<presentation>
\usepackage{beamerthemesplit}
\begin{document}
\section{An Example}
\subsection{version 1}
\begin{frame}[allowframebreaks]
\frametitle{Things to do on a Sunday Afternoon}
\includegraphics<1>{../latex/images.jpg}
\includegraphics<2>{../latex/gmedina.png}
\begin{block}{One could \ldots}
\begin{itemize}
\item walk the dog\dots
\item read a book
\item confuse a cat
\end{itemize}
\end{block}
... the rest of the code
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
dynamically changing images in beamer class
you cannot use overlay specifications together with the allowframebreaks option.
Re: dynamically changing images in beamer class
Thanks and look forward to your reply,
Carol