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.
You could use \defbeamertemplate to define your own title page template. There you may use the commands \inserttitle , \insertauthor , \insertdate etc. to insert those values, also don't forget to use the predefined font and color values. Here is a compilable example.
Use \setbeamercolor{template_name}{〈key=value〉 list} to change a Beamer's color. Keys are: fg, bg, parent, use. Use the color syntax of the xcolor package.
Beamer is a LaTeX document class for creating presentation slides, with a wide range of templates and a set of features for making slideshow effects. It supports pdfLaTeX, LaTeX + dvips, LuaLaTeX and XeLaTeX.
The \frame command puts a rectangular frame around the object specified in the argument. The reference point is the bottom left corner of the frame. No extra space is put between the frame and the object.
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).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With