如何使目录框架中的子部分变灰?

如何使目录框架中的子部分变灰?

我正在做一个包含章节和小节的 Beamer 演示文稿,并想在某些时候(在某些小节之前)提醒观众提纲。我希望除我即将进入的章节和小节外,所有章节和小节都变灰。

目前,我正在使用这个:

\begin{frame}<beamer>
  \frametitle{Outline}
  \tableofcontents[currentsection,currentsubsection,hideothersubsections]
\end{frame}

但是 currentsection 的所有子部分都是正常字体,而不仅仅是当前部分。我想指出我将要进入哪些子部分,所以我想将其他子部分显示为灰色。

提前感谢您的建议。

答案1

答案在手册的第 10.5 节(添加目录)。您可以使用以下选项为活动和非活动子部分指定不同的样式subsectionstyle

\begin{frame}<beamer>
  \frametitle{Outline}
  \tableofcontents[currentsection,currentsubsection,hideothersubsections,subsectionstyle=show/shaded]
\end{frame}

相关内容