如何彻底删除 Beamer 中的页脚?

如何彻底删除 Beamer 中的页脚?

按照如何删除 LaTeX Beamer 模板的页脚?,我可以用页码替换默认页脚,如下所示:

%gets rid of bottom navigation bars
\setbeamertemplate{footline}[frame number]{}

%gets rid of navigation symbols
\setbeamertemplate{navigation symbols}{}

但这对我来说仍然不令人满意。在某些情况下,我想完全删除页脚。

例如,当我使用该draft选项时,页脚将不透明并被完全覆盖。如果一些项目要点位于该区域,即使是部分,它们也不会被看到。

那么如何才能彻底删除 Beamer 演示文稿中的页脚?

答案1

事实证明,要获得 Beamer 文档的完全空白底部,您需要执行以下操作:

%gets rid of bottom navigation bars
\setbeamertemplate{footline}[frame number]{}

%gets rid of bottom navigation symbols
\setbeamertemplate{navigation symbols}{}

%gets rid of footer
%will override 'frame number' instruction above
%comment out to revert to previous/default definitions
\setbeamertemplate{footline}{}

现在 Beamer 页脚是空白的,使用该draft选项进行编译时,文档底部完全没有任何东西。在删除draft最终编译的选项时,您可以注释掉最后一行以恢复到以前的定义或默认值。

答案2

类似地,您可以使用\setbeamertemplate{footline}[page number]将所有幻灯片中的页脚行替换为简单的幻灯片计数。如果您想保留页脚,但删除页眉,只需使用\setbeamertemplate{headline}。这些与外部主题有关信息线在 beamer 中。如果您未\useoutertheme{infolines}在相应的 .sty 文件中使用或注释,则两者都会被删除。

幻灯片中没有页眉,但有页脚

代码如下:

\documentclass{beamer}
\mode<presentation> {

\usetheme{Madrid}
\usecolortheme{AbhiGreen} % this is my custom theme, you can use yours
\setbeamertemplate{headline} % this is the line/code you need to add to get rid of header

}

\title[short title]{title}
\author{Abhinav Sinha}
\institute[IITB]{Indian Institute of Technology, Bombay (Mumbai), India \\
\medskip
\texttt{[email protected]}}
\date{\today}
\pgfdeclareimage[height=0.5cm]{university-logo}{IITBombayLogo.png}
\logo{\pgfuseimage{university-logo}}

\begin{document}

\begin{frame}
\titlepage
\end{frame}
\end{document}

相关内容