我通常使用以下内容在每个部分的开头显示目录:
\AtBeginSection[]{%
\begin{frame}
\tableofcontents[currentsection, subsectionstyle=show/show/hide]
\end{frame}
}
因此,如果我使用\section*{title}
,则该节的开头没有目录。但是,我希望节标题出现在目录中,并且我希望该节被编号。
答案1
您可以暂时关闭某一部分开始时的自动目录:
\documentclass{beamer}
\AtBeginSection[]{%
\begin{frame}
\tableofcontents[currentsection, subsectionstyle=show/show/hide]
\end{frame}
}
\begin{document}
\section{section with toc}
\begin{frame}
content...
\end{frame}
{
\AtBeginSection[]{}
\section{section withou toc}
\begin{frame}
content...
\end{frame}
}
\section{section with toc}
\begin{frame}
content...
\end{frame}
\end{document}