我想显示部分(但不是全部)子节的子节标题。我发现\tableofcontents[hideothersubsections]
,这会隐藏其他节的子节,但我不在我想显示的节中,因此这将无法显示我想显示的子节。简而言之,我希望能够命名一个节并在目录中隐藏该节的子节。
答案1
手动方法可以吗?
\documentclass{beamer}
\begin{document}
\begin{frame}
\tableofcontents[sections=1,hidesubsections]
\tableofcontents[sections=2]
\tableofcontents[sections=3,hidesubsections]
\end{frame}
\section{sec1}
\subsection{sub1}
\frame{}
\section{sec2}
\subsection{sub2}
\frame{}
\section{sec3}
\subsection{sub3}
\frame{}
\end{document}
[垂直间距太大,但根据你有多少个部分,一些负vspace
s 可以解决这个问题]