保留部分后的节计数器

保留部分后的节计数器

我需要使用 \part 逐周将我的讲义在 beamer 中分开,并且不能丢失之前部分的 section/subsection/subsubsection 计数器。我可以手动设置计数器,但一定有更好的解决方案。

如果您能在这方面帮助我,我将非常高兴。

谢谢。bkarpuz

答案1

在以下示例中,第三个整体节是第二部分中的第一个节,但它获得节号“3”,与部分计数器无关:

\documentclass{beamer}
\usetheme{Berlin}
\setbeamertemplate{section in toc}[sections numbered]
\setbeamertemplate{subsection in toc}[subsections numbered]

\AtBeginSection[]{%
  \begin{frame}
    \sectionpage
  \end{frame}%
}

\AtBeginPart{%
  \begin{frame}
    \partpage
  \end{frame}%
}

\begin{document}
\part{First part}
\section{First section}
\section{Second section}
\part{Second part}
\section{Third section}
\end{document}

相关内容