删除一个部分之前的目录(Beamer)

删除一个部分之前的目录(Beamer)

我有一个Beamer演示文稿,其中我使用该\AtBeginSection命令来指定我要以当前项目的突出显示介绍的概述。想要。

我知道我可以在每个幻灯片之前都可以插入概述框架,但我更喜欢这样做的方法更好,例如使用命令\NotAtThisBeginSection...

答案1

这是一个基于 SO 上发布的代码的最小工作示例:

\documentclass{beamer}

% BEGIN OF CODE POSTED AT SO
\RequirePackage{ifthen} % package required

\newboolean{sectiontoc}
\setboolean{sectiontoc}{true} % default to true

\AtBeginSection[]
{
  \ifthenelse{\boolean{sectiontoc}}{
    \begin{frame}<beamer>{Gliederung}
      \tableofcontents[currentsection]
    \end{frame}
  }
}

\newcommand{\toclesssection}[1]{
  \setboolean{sectiontoc}{false}
  \section{#1}
  \setboolean{sectiontoc}{true}
}
% END OF CODE POSTED AT SO

\begin{document}

\section{First}

\begin{frame}{First}
Some text.
\end{frame}

\toclesssection{Second}

\begin{frame}{Second}
Some text.
\end{frame}

\end{document}

相关内容