投影机演示中两个独立的目录

投影机演示中两个独立的目录

我在 Beamer 中总结了演示文稿中的两篇文章,我需要单独的目录来概述这两篇文章。我试过了,titletoc但似乎不起作用。我尝试过这样使用它

\documentclass{beamer}
\usepackage{titletoc}

\begin{document}

\startcontents
\printcontents{ }{1}{}

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

\section{A regular section}
\section{Second regular section}

\stopcontents

\startcontents
\printcontents{ }{2}{}
 \begin{frame}
   \tableofcontents
\end{frame}

\section{Section for other toc}
\section{Another section for other toc}

\stopcontents

\end{document}

但我得到的是一个看起来非常奇怪的框架,上面到处都是“目录中的部分”,然后显示了演示文稿中所有部分的目录。这两个表都是这种情况。这是它的图片。

看看这两个目录

答案1

我建议使用如下例所示\part的机制beamer。这将创建两个具有单独目录的单独部分。

\documentclass{beamer}
\begin{document}

\part{First Project}

\begin{frame}
\frametitle{Outline of the first part}
\tableofcontents[part=1]
\end{frame}

\section{First section}
\section{another section}
\begin{frame}
\end{frame}

\part{Second Project}

\begin{frame}
\frametitle{Outline of the second part}
\tableofcontents[part=2]
\end{frame}

\section{First section of second part}
\section{another section}

\begin{frame}
\end{frame}
\end{document}

注意:可选参数([part=...]\tableofcontents也可以省略,因为此命令将自动仅显示当前部分的目录。

相关内容