LaTeX 使单词出现

LaTeX 使单词出现

我想在 Beamer 幻灯片中逐个介绍单词。我学会了使用 itemize 来实现这一点,但如果我有简单的纯词怎么办?我不希望每个片段中的单词重复,我只想让新单词像这样显示:

母牛

牛跳了

\begin{frame}
  \<1-> The
  \<2> cow
  \<3> jumped
\end{frame}

答案1

\documentclass{beamer} 
\begin{document}
\begin{frame}[t]
\frametitle{How to use \texttt{\textbackslash pause}}
The \pause cow \pause jumped \pause and \pause bought \pause honey \pause liquor
\pause for \pause the \pause marmots.
\end{frame}
\end{document}

在此处输入图片描述

或者

\documentclass{beamer} 
\begin{document}
\begin{frame}[t]
\frametitle{How to use \texttt{\textbackslash pause}}
The \pause \alt<4->{koala}{cow} \pause jumped \pause and \pause bought \pause honey \pause liquor
\pause for \pause the \pause marmots.
\end{frame}
\end{document}

在此处输入图片描述

相关内容