我需要做目录,其中框架上只有一个部分,下一帧上的其他部分,但幻灯片上只有一个部分,就像这样
不是这样的
而不是像这样
我该怎么做呢?请帮帮我。MWE:
\documentclass{beamer}
\begin{document}
\frame{\tableofcontents}
\section{ap1}
\subsection{ap1.1}
\subsection{ap1.2}
\subsection{ap1.3}
\begin{frame}
\end{frame}
\section{ap2}
\subsection{ap2.1}
\subsection{ap2.2}
\subsection{ap2.3}
\begin{frame}
\end{frame}
\section{ap3}
\subsection{ap3.1}
\subsection{ap3.2}
\subsection{ap3.3}
\begin{frame}
\end{frame}
\end{document}
答案1
\documentclass{beamer}
\usepackage{pgffor}
\begin{document}
\foreach \i in {1,...,3}{
\frame{
\tableofcontents[
sections=\i] }
}
\section{ap1}
\subsection{ap1.1}
\subsection{ap1.2}
\subsection{ap1.3}
\section{ap2}
\subsection{ap2.1}
\subsection{ap2.2}
\subsection{ap2.3}
\section{ap3}
\subsection{ap3.1}
\subsection{ap3.2}
\subsection{ap3.3}
\begin{frame}
\end{frame}
\end{document}