LaTeX Beamer包,如何在\againframe中更改帧标题

16

在LaTeX中使用Beamer包的\againframe命令时,是否可以更改帧标题?我想显示以前的幻灯片,位于特定幻灯片内部,但这一次标题不同。

谢谢。

1个回答

25

尝试执行以下操作:

\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}

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


4
我想补充一点,你可能想在第一帧中隐藏第二个标题。然后,你可以使用 \begin{frame}<1>[label=my_frame] 只显示第一个标题。 - Konstantin Milyutin

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接