如何在 Beamer 中的特定幻灯片中隐藏页脚(或脚线)?

发布于 2024-11-02 07:38:13 字数 101 浏览 0 评论 0原文

我正在 Beamer 中准备演示文稿。我对我正在使用的模板进行了一些自定义。现在我想隐藏标题幻灯片上的脚线。我还想将其隐藏在其他几张幻灯片上。我该如何实现这一目标?

谢谢!

I am preparing a presentation in Beamer. I have done a few customizations to the template I am using. Now I want to hide the footline on the title slide. I also want to hide it on a few other slides. How do I achieve that?

Thanks!

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

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

发布评论

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

评论(2

巨坚强 2024-11-09 07:38:13

如果您想要纯粹的普通幻灯片,请为框架提供 [plain] 选项。

If you want a purely plain slide, you give the [plain] option to the frame.

凉城 2024-11-09 07:38:13

如果您想隐藏标题和页脚,则 plain 选项是完美的解决方案。如果您只想隐藏某些幻灯片的脚线 - 但保留标题 - 您可以暂时重新定义它,如下例所示:

\documentclass{beamer}

\setbeamertemplate{footline}[frame number]


\begin{document}

\begin{frame}
normal frame
\end{frame}

\begingroup
\setbeamertemplate{footline}{}
\begin{frame}
without footline
\end{frame}
\endgroup

\begin{frame}
normal frame
\end{frame}

\end{document}

The plain option is the perfect solution if you want to hide both the headline and the footline. If there are slides for which you only want to hide the footline - but keep the headline - you can temporarily redefine it like in the following example:

\documentclass{beamer}

\setbeamertemplate{footline}[frame number]


\begin{document}

\begin{frame}
normal frame
\end{frame}

\begingroup
\setbeamertemplate{footline}{}
\begin{frame}
without footline
\end{frame}
\endgroup

\begin{frame}
normal frame
\end{frame}

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