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

感谢。

有帮助吗?

解决方案

尝试执行以下操作:

\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节。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top