Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LaTeX Beamer package, change frame title in \againframe

Tags:

latex

beamer

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.

like image 569
Gabriel Avatar asked Oct 05 '08 08:10

Gabriel


People also ask

How do I change my beamer title page?

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.

How do I change the title color in beamer?

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.

Is beamer a Documentclass in LaTeX?

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.

What is frame in LaTeX?

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.


1 Answers

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).

like image 80
David Avatar answered Oct 03 '22 18:10

David