tags:

views:

2322

answers:

1

Is it possible to change the frame title when using \againframe from the Beamer package, in LaTeX? I would like to have a previous frame displayed, at a specific slide inside the frame, but with a different title this time.

Thanks.

+6  A: 

Try doing the following:

\begin{frame}[label=my_frame]
  \frametitle<1>{Title to be displayed the first time}
  \frametitle<2>{Title to be displayed the second time}
  %Other frame contents
\end{frame}

\againframe<2>{my_frame}

This is known as using "overlay specifications." Refer to section 3.10 of the Beamer User Guide (version 3.01).

David