我将使用 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 智取,他发现这张幻灯片不存在,因此没有将该部分添加到目录中。