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

发布于 2024-07-07 10:38:52 字数 99 浏览 6 评论 0原文

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

谢谢。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

澜川若宁 2024-07-14 10:38:52

尝试执行以下操作:

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文