如何在不使用 \pause 的情況下建立帶有透明字母 LaTeX 的幻燈片?

如何在不使用 \pause 的情況下建立帶有透明字母 LaTeX 的幻燈片?

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

相關內容