
我知道在使用投影機建立簡報時如何逐步顯示列表,但是如何在不逐項列出的情況下逐步顯示簡單的文字?
\begin{frame}
\frametitle{Title}
<1-> First\\
<2-> Second:
\begin{itemize}
\item<3-> Third
\item<4-> Fourth
\end{itemize}
\end{frame}
我想顯示後面帶有清單的文字段落。如何逐步揭示段落?我的範例適用於列表,但不適用於純文字。
答案1
如果我理解正確,那麼您正在尋找這樣的東西:
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{Uncovered paragraphs}
\uncover<1->{
This is the first paragraph.
}
\bigskip
\uncover<2->{
The second paragraph with long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long text in two lines.
}
\bigskip
\uncover<3->{
The third paragraph.
}
\end{frame}
\end{document}
答案2
你在找嗎\pause
?
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{Title}
First\pause
Second:
\begin{itemize}[<+(1)->]
\item Third
\item Fourth
\end{itemize}
\end{frame}
\end{document}