TOC,太长,不适合安装

TOC,太长,不适合安装

我已将下面的代码添加到序言中以制作目录,因为我希望section显示我将要讨论的内容。但现在我的目录对于一帧来说太大了,我该如何让它适合一帧?

\AtBeginSection[] % Do nothing for \section*
{
\begin{frame}<beamer>
\frametitle{Inhoudsopgave - Sectie \thesection}
\tableofcontents[currentsection]
\end{frame}
}

答案1

您可以使用较小的字体大小,例如:

\begin{frame}
  \frametitle{...}
  \small
  \tableofcontents
\end{frame}

其他可能性:

  • 较短的标题可避免需要多行的标题。
  • 更简单的部分结构
  • ...

相关内容