Beamer ToC 中未显示空白部分

Beamer ToC 中未显示空白部分

我将使用 Beamer 作为讲座工具,并计划用 Beamer 中的一个部分来表示每个讲座。因此,即使我们还没有讲到第 2 讲,一个部分也会显示讲座的内容。

然而,Beamer 目录似乎过于智能,不会显示没有幻灯片的部分。

以下是 MWE:

\documentclass{beamer}

\begin{document}

\section{Table of Contents}

\begin{frame}{Table of Contents}
    \tableofcontents
\end{frame}

\section{A real section}

\begin{frame}{A real frame}
    This is a frame
\end{frame}

\section{An empty section}

\section{Another real section}
\begin{frame}{Another real frame}
    This is also a frame
\end{frame}

\section{Another empty section}

\end{document}

以下是您将获得的目录: 目录

如您所见,最后一节未出现在目录中。可以使用 \addcontentsline 等添加这些部分,但让格式适合您的 beamer 主题很麻烦。我觉得应该有一种更简单的方法来告诉 beamer 将没有幻灯片的部分也包含在目录中。

还尝试在底部添加一个不可见的幻灯片,但再次被 Beamer 智取,他发现这张幻灯片不存在,因此没有将该部分添加到目录中。

答案1

frame您实际上可以在文档的最末尾添加一个空白来实现预期的结果,请参阅beameruserguide第 4.3 节 p30。

当然,这会在演示文稿的末尾留下一个空白页,但是,最后一页frame实际上可用于调用标题页。

在此处输入图片描述

相关内容