答案1
\appendix
作为命令的替代leandriis 的回答您可以将额外的幻灯片放在单独的位置\part
:
\documentclass{beamer}
\begin{document}
\begin{frame}
\tableofcontents
\end{frame}
\section{main}
\begin{frame}
abc
\end{frame}
\section{more main}
\begin{frame}
abc
\end{frame}
\part{second part}
\section{backup}
\begin{frame}
abc
\end{frame}
\end{document}
答案2
我还发现了另一个使用包的解决方案书签,以防有人想隐藏目录中的选定部分(文档中的任意位置)。代码如下:
\documentclass{beamer}
\usepackage{bookmark}
\begin{document}
\frame{\frametitle{Table of contents}
\tableofcontents
}
\section{Main Section 1}
\frame{Main Section 1}
\section{Main Section 2}
\frame{Main Section 2}
\section{Main Section 3}
\frame{Main Section 3}
\bookmark[page=5]{Questions Section 1}
\section*{Questions Section 1}
\frame{Questions Section 1}
\bookmark[page=6]{Questions Section 2}
\section*{Questions Section 2}
\frame{Questions Section 2}
\end{document}
答案3
您可以使用\appendix
如以下 MWE 所示的命令:
\documentclass{beamer}
\begin{document}
\begin{frame}
\tableofcontents
\end{frame}
\section{First Section}
\begin{frame}
some text
\end{frame}
\appendix
\section{First Section in Appendix}
\begin{frame}
some additional text
\end{frame}
\end{document}
附录中的章节在目录中隐藏,但在 pdf 书签中列出。