更新 - MWE

更新 - MWE

我有一张幻灯片,其中有一个引理(块),其中有一个方程。我希望下一张幻灯片包含该方程,但绝对位置相同。目前,如果我将方程置于下一张幻灯片的中心,当我经过幻灯片时,它会“移动”。

有没有办法以某种方式记录/保存引理中方程的位置,然后将其绝对应用于下一张幻灯片中的(相同)方程?

另一个选择是留在同一张幻灯片中,保持方程式不变,但删除词元块环境和其中的其余文本。

我希望这一切都有意义。这样看起来会好得多。

更新 - MWE

\documentclass[utf8]{beamer}
\begin{document}
\begin{frame}{Key lemma}
  \begin{lemma}
    Let $x,y,z$ be variables.  Then, almost surely,
    \begin{equation*}
      x = y = z.
    \end{equation*}
  \end{lemma}
\end{frame}

\begin{frame}{Key lemma}
  \begin{equation*}
    x = y = z.
  \end{equation*}
\end{frame}
\end{document}

您可以看到方程式“移动”了。

答案1

\visible是你的朋友:

\documentclass{beamer}

\begin{document}
\begin{frame}<1-2>{Key lemma}
    \visible<1>{
  \begin{lemma}
    Let $x,y,z$ be variables.  Then, almost surely,
   }
    \begin{equation*}
      x = y = z.
    \end{equation*}
  \visible<1>{
  \end{lemma}
  }
\end{frame}

\end{document}

相关内容