![비머를 사용하여 TOC의 일부 섹션만 표시](https://rvso.com/image/370293/%EB%B9%84%EB%A8%B8%EB%A5%BC%20%EC%82%AC%EC%9A%A9%ED%95%98%EC%97%AC%20TOC%EC%9D%98%20%EC%9D%BC%EB%B6%80%20%EC%84%B9%EC%85%98%EB%A7%8C%20%ED%91%9C%EC%8B%9C.png)
답변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 책갈피에는 나열되어 있습니다.