
プレゼンテーションで、次のコードを 2 つのスライドに分けて作成したいと思います。ただし、最初のページと5 番目のページに\pause
配置したいので、ここではお手伝いできません。first section
the second section
\documentclass{beamer}
\begin{document}
\begin{frame}{Structure}
\begin{enumerate}
\item
The first section
\item
The second section
\end{enumerate}
\end{frame}
\end{document}
答え1
それぞれの項目に異なるオーバーレイを指定できます。たとえば、The first section
スライド 1 (から 4) とThe second section
スライド 5 にオーバーレイを指定したい場合は、次のようにします。
\documentclass{beamer}
\begin{document}
\begin{frame}{Structure}
\begin{enumerate}
\item<1->
The first section
\item<5->
The second section
\end{enumerate}
\end{frame}
\end{document}