Beamer 的幻灯片没有页脚

Beamer 的幻灯片没有页脚

早上好。我想制作一张没有页脚的标题幻灯片,它在其他幻灯片中提到过。谢谢你的回答。

答案1

根据期望的结果,您有两种选择:

  1. 使用plain框架的选项;这将抑制该框架的标题和脚注。
  2. 局部重新定义footline模板为空。这将删除页脚但保留标题。

下面的例子展示了两种可能性以及包含两个元素的“常规”框架以供比较:

\documentclass{beamer}
\usetheme{AnnArbor}

\begin{document}

\begin{frame}[plain]
test frame without headline and footline
\end{frame}

\begingroup
\setbeamertemplate{footline}{}
\begin{frame}
test frame without footline but with headline
\end{frame}
\endgroup

\begin{frame}
test frame with footline and headline
\end{frame}

\end{document}

结果:

在此处输入图片描述

相关内容