逐步显示 itemize 之外的文本

逐步显示 itemize 之外的文本

我知道在使用 Beamer 创建演示文稿时如何逐步显示列表,但如何才能逐步显示简单文本而不将其逐项列出?

\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}

相关内容