我最初想要一个目录幻灯片(在 beamer 中),但在涵盖每个主要部分之后,我想要一个目录幻灯片,其中仅显示到目前为止涵盖的所有内容和下一个内容!(而不是整个目录幻灯片)
这个怎么做?
答案1
\documentclass{beamer}
\AtBeginSection[]{%
\begin{frame}<\value{section}>
\tableofcontents[pausesections]
\end{frame}
}
\begin{document}
\begin{frame}\maketitle\end{frame}
\section{SECT I}
\subsection{I.1}
\begin{frame}I.1\end{frame}
\subsection{I.2}
\begin{frame}I.2\end{frame}
\section{SECT II}
\begin{frame}II frame 1\end{frame}
\begin{frame}II frame 2\end{frame}
\section{SECT III}
\subsection{III.1}
\begin{frame}III.1\end{frame}
\subsection{III.2}
\begin{frame}III.2\end{frame}
\end{document}