Beamer 演示目录 - 完全隐藏其他部分,仅显示当前部分和小节

Beamer 演示目录 - 完全隐藏其他部分,仅显示当前部分和小节

结构如下

第 1 部分

第 2 部分

第1款

第2款

第3款

第 3 部分

第 4 部分

第 5 部分

第 6 部分

在幻灯片中,我将按如下方式显示以完全隐藏第 1、4、5、6 部分。Beamer 有什么办法可以做到这一点吗?

第 2 部分

第1款

第2款

第3款

答案1

这取决于您想要在哪里显示第 2 节的目录。由于您没有向我们展示 MWE 或提供任何其他信息,因此我可以想象有人可能会想放置此目录,这里有一些可能的位置:

\documentclass{beamer}


\begin{document}

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

\begin{frame}
\tableofcontents[sections=2]
\end{frame}

\section{Section 1}\frame{}

\section{Section 2}\frame{}
\begin{frame}
\tableofcontents[currentsection,sectionstyle=show/hide]
\end{frame}

\subsection{subsection 1}\frame{}
\subsection{subsection 2}\frame{}
\subsection{subsection 3}\frame{}
\section{Section 3}\frame{}
\section{Section 4}\frame{}
\section{Section 5}\frame{}
\section{Section 6}\frame{}


\end{document}

相关内容