beamer 中的目录

beamer 中的目录

我需要做目录,其中框架上只有一个部分,下一帧上的其他部分,但幻灯片上只有一个部分,就像这样

在此处输入图片描述

不是这样的

在此处输入图片描述

而不是像这样

在此处输入图片描述

我该怎么做呢?请帮帮我。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}

相关内容