使用投影機僅顯示目錄中的某些部分

使用投影機僅顯示目錄中的某些部分

我正在用投影機準備簡報。除了我將展示的幻燈片之外,我還想添加一些額外的幻燈片來解答可能出現的問題。對於這些額外的幻燈片,我想使用章節和小節,這樣我就可以使用書籤瀏覽整個文件。但是,我不希望這些部分出現在 TOC 投影片中,而只出現在 pdf 檢視器的書籤導覽窗格中。知道我該怎麼做嗎?

作為參考,我發布了我希望文檔的外觀的圖像: 在此輸入影像描述

答案1

\appendix作為命令的替代方案萊德里斯回答您可以將多餘的幻燈片放在單獨的\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 書籤中列出。

相關內容