使用 beamer 仅显示目录中的某些部分

使用 beamer 仅显示目录中的某些部分

我正在用 Beamer 准备一个演示文稿。除了我要展示的幻灯片之外,我还想添加一些额外的幻灯片,以便回答可能的问题。对于这些额外的幻灯片,我想使用章节和小节,这样我就可以使用书签浏览整个文档。但是,我不希望这些章节出现在目录幻灯片中,而只出现在 pdf 查看器的书签导航窗格中。有什么想法可以做到这一点吗?

作为参考,我发布了一张我希望文档看起来的样子: 在此处输入图片描述

答案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 书签中列出。

相关内容