如何在 beamer 中为每个部分添加目录以及每个部分之前的小节?

如何在 beamer 中为每个部分添加目录以及每个部分之前的小节?

我想在每个部分的开头添加一个目录没有各小节目录子部分。我能做什么?

答案1

\tableofcontents您可以使用和-command 的可选参数来实现这一点\AtBeginSection

您可以像这样定义章节和小节的样式:

sectionstyle=<current section>/<other sections>

subsectionstyle=<current subsection>/<other subsections in current secton>/<other subsections>

有效关键字为showshadedhide

这将放置一个没有子部分的目录和一个在每个部分包含当前部分子部分的目录:

\AtBeginSection[]
{
  \begin{frame}{title}
  \tableofcontents[
    sectionstyle=show/show,
    subsectionstyle=hide/hide/hide
  ]
  \end{frame}
  \begin{frame}{title}
  \tableofcontents[
    currentsection,
    sectionstyle=show/hide,
    subsectionstyle=show/show/hide
  ]
  \end{frame}
}

请参阅 Beamer 用户指南第 99-100 页的解释

相关内容