
我想將以下程式碼分別製作成我的簡報中的兩張投影片。但\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}