I tried to build my first presentation and met my first problem: I would like to know how to create a part of my presentation that looks like the example below. Instead of writing 3 frames, I would lite to write 1 frame which contains a figure and some text beneath it; and I would like the text to change as I 'arrow' through the presentation, because that makes it easier to explain a figure. Otherwise, I would be forced to change the "pages" all the time back and forth. What would be annoying for my audiance.
\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}
\frametitle{Example}
\begin{figure}
\includegraphics[width=1\textwidth]{Figure}
\caption{Caption}
\end{figure}
bla 1
\end{frame}
\begin{frame}
\frametitle{Example}
\begin{figure}
\includegraphics[width=1\textwidth]{Figure}
\caption{Caption}
\end{figure}
bla 2
\end{frame}
\begin{frame}
\frametitle{Example}
\begin{figure}
\includegraphics[width=1\textwidth]{Figure}
\caption{Caption}
\end{figure}
bla 3
\end{frame}
\end{document}
So in this example the figure stays the same, but the text (underneath) changes. Does anyone know how to get that result?