Beamer:当没有幻灯片标题(以及在主标题页上)时,如何隐藏顶部栏?

Beamer:当没有幻灯片标题(以及在主标题页上)时,如何隐藏顶部栏?

在 Beamer 中,即使没有标题,Latex 也会在幻灯片顶部添加一个(空白)栏。

\documentclass[]{beamer}
\usetheme{Rochester}
\title {Test}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
Test\\\vfill
Test\\\vfill
Test\\\vfill
Test\\\vfill
Test\\\vfill
Test\\\vfill
Test
\par\end{frame}
\end{document}

在此处输入图片描述

如何省略此栏并在页面顶部开始没有标题的幻灯片?(演示文稿标题页类似)。

答案1

将参数传递[plain]给框架命令:

\documentclass[]{beamer}
\usetheme{Rochester}
\title {Test}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}[plain]
Test\\\vfill
Test\\\vfill
Test\\\vfill
Test\\\vfill
Test\\\vfill
Test\\\vfill
Test
\par\end{frame}
\end{document}

在此处输入图片描述

相关内容