使不同的幻灯片排列在一起

使不同的幻灯片排列在一起

假设您的演示文稿中有以下内容:

\begin{frame}
  Identical text
\end{frame}
\begin{frame}
  \begin{equation}
    \mathbb R
  \end{equation}
  Identical text
  \begin{equation}
    \int
  \end{equation}
\end{frame}

如何确保“相同文本”在每张幻灯片中处于相同位置,而无需手动插入\vspace与公式大小完全相同的 ?如果我显示下一张幻灯片,我不希望“相同文本”跳来跳去。

答案1

\documentclass{beamer}
\begin{document}

\begin{frame}
\onslide<2>{%
  \begin{equation}
  \mathbb R 
  \end{equation}
  }
  Identical text
\onslide<2>{%
  \begin{equation}
    \int
  \end{equation}
  }
\end{frame}
\end{document}

相关内容