隐藏标题页和目录页侧边栏中的导航信息(beamer)

隐藏标题页和目录页侧边栏中的导航信息(beamer)

为清晰起见进行了编辑:我试图删除侧边栏中的导航信息,该导航信息列出了标题页上的目录和 Beamer 演示文稿中的目录页。我仍然希望侧边栏能够显示以保持演示文稿背景的一致性,但我希望它是空白的。我使用的是 PaloAlto 主题。

我找到了一种解决标题页问题的办法,即使用 \addtobeamertemplate{标题页} 将标题页的背景设置为一个矩形,其大小和颜色与侧边栏顶部的侧边栏相同,但这种方法不适用于目录页,因为我找不到通过模板定义专门链接到该页面的方法。

有没有更简单的方法可以只隐藏标题页和目录页上的侧边栏?谢谢!

答案1

显然,从评论来看,这个想法是只删除侧边栏中包含的信息而不是侧边栏本身;如果是这样,那么您可以简单地将sidebar left这些框架的模板设置为空,然后使用以下sidebar theme选项恢复其原始含义:

\documentclass{beamer}
\usetheme{PaloAlto}

\title{The Title}
\author{The Author}
\institute{The Institute}
\date{\today}

\begin{document}

\setbeamertemplate{sidebar left}{}
\begin{frame}
\titlepage
\end{frame}

\begin{frame}
\tableofcontents
\end{frame}

\setbeamertemplate{sidebar left}[sidebar theme]
\section{Test Section}
\begin{frame}
test
\end{frame}

\begin{frame}
test
\end{frame}

\end{document}

在此处输入图片描述

答案2

您可以将plain选项添加到框架中。

\begin{frame}[plain]
    \frametitle{}  % recover the header
    a frame without sidebar
\end{frame}

相关内容