LaTeX Beamer包,在\ againframe中更改框架标题

Gab*_*iel 14 latex beamer

在LaTeX中使用Beamer包中的\ againframe时是否可以更改帧标题?我希望在框架内的特定幻灯片上显示前一帧,但这次使用不同的标题.

谢谢.

Dav*_*vid 22

尝试执行以下操作:

\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}
Run Code Online (Sandbox Code Playgroud)

这被称为使用"覆盖规范".请参阅Beamer用户指南(版本3.01)的第3.10节.

  • 我想补充一点,你可能想在第一帧中隐藏第二个标题.然后您可以使用\ begin {frame} <1> [label = my_frame]来仅显示第一个标题. (4认同)