如何在投影机上设置这种动画?
首先显示我,其次显示我。
我正在尝试按描述显示这句话。show_me_first
首先显示,然后单击向下按钮,它将显示show_me_second
。请问如何处理?
多谢!
答案1
根据预期的覆盖格式,有两种可能性:
\documentclass{beamer}
\begin{document}
\begin{frame}
\only<1>{first}\only<2>{second}
\onslide<3>{third} \onslide<4>{fourth}
\end{frame}
\end{document}
您还可以使用\pause
:
\begin{frame}
first\pause second
\end{frame}
您还可以查看\alt
和的 beamer 手册\temporal
。
以下是几个总体规范的示例:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{itemize}
\item<1-> \only<1>{first}\only<2->{second}
\item<3-4> \onslide<3->{third}\onslide<4>{ fourth}
\end{itemize}
\end{frame}
\end{document}
答案2
尝试这个:
\begin{frame}
\only<1-2>{show_me_first}
\only<2>{show_me_second}
\end{frame}
祝好,查理