显示目录中多个部分的小节,但不是所有部分

显示目录中多个部分的小节,但不是所有部分

在 beamer 演示文稿目录中,我希望只显示大多数章节的章节标题,但也显示某些章节的子章节标题。我知道这很容易只针对当前章节实现。但我想显示当前章节和另一个章节的子章节标题。基本上,hideothersubsections我需要一个选项来指定要隐藏子章节的章节编号,而不是使用选项。有这个选项吗?

答案1

您可以将目录拆分为不需要子部分的部分和包含子部分的部分:

\documentclass{beamer}

\begin{document}

\begin{frame}
\tableofcontents[sections={1},hideallsubsections]
\tableofcontents[sections={2-3}]
\tableofcontents[sections={4},hideallsubsections]
\end{frame}
    
\section{section title}
\subsection{subsection title}
\begin{frame}
    abc
\end{frame} 

\section{section title}
\subsection{subsection title}
\begin{frame}
    abc
\end{frame} 

\section{section title}
\subsection{subsection title}
\begin{frame}
    abc
\end{frame} 

\section{section title}
\subsection{subsection title}
\begin{frame}
    abc
\end{frame} 
    
\end{document}

在此处输入图片描述

相关内容