如何在 Beamer 中制作“轮廓”框架?

如何在 Beamer 中制作“轮廓”框架?

在演示文稿中,人们经常会显示一个包含目录的“大纲”框架,其中一些部分为灰色(已呈现),而其他部分则突出显示(将立即呈现)。

有人能告诉我如何实现吗?我们每次都必须复制相同的框架(目录)并更改某些标题的颜色吗?

非常感谢

答案1

您可以使用以下方法执行此操作\AtBeginSection

\documentclass{beamer}
\usetheme{Boadilla}

\AtBeginSection[]
{
  \begin{frame}<beamer>
    \frametitle{Outline for section \thesection}
    \tableofcontents[currentsection]
  \end{frame}
}


\begin{document}

\section{Test section one}
\begin{frame} Test \end{frame}
\begin{frame} Test \end{frame}
\section{Test section two}
\begin{frame} Test \end{frame}
\begin{frame} Test \end{frame}

\end{document}

这是在第二部分的帧之前获得的帧:

在此处输入图片描述

答案2

要获取包含目录的幻灯片,请使用

\begin{frame}
\frametitle{Outline}
  \tableofcontents
\end{frame}

或者更新的 Beamer 版本

\begin{frame}{Outline}
  \tableofcontents
\end{frame}

虽然这并没有完全回答最初的问题,但最终还是很有用的,因为很多人可能会带着这个特定的目标访问这个帖子。

相关内容