当我在环境中使用\pause
公式\[ \]
时theorem
,公式下方会出现意外的额外空间;请参阅定理:暂停(公式)。现在我使用 将其删除\vspace{-0.60}cm
,如定理:暂停和负 VSpace 中所述。
如何在不使用的情况下将其删除\vspace
?
\documentclass[beamer]{standalone}
\usetheme{CambridgeUS}
\begin{document}
\begin{frame}
\begin{theorem}[No Pause]
\[
a + b = c
\]
\end{theorem}
\begin{theorem}[Pause (formula)]
\[
a + b = \pause c
\]
\end{theorem}
\begin{theorem}[Pause and Negative VSpace]
\[
a + b = \pause c
\]
\vspace{-0.60cm}
\end{theorem}
\begin{theorem}[Pause (text)]
a + b = \pause c
\end{theorem}
\end{frame}
\end{document}
答案1
我还没有完全追踪,也不确定它在所有情况下是否完全稳健,但你可以在公式中保留暂停机制,因此避免在显示后开始一行,通过添加一个组
\documentclass[beamer]{standalone}
\usetheme{CambridgeUS}
\begin{document}
\begin{frame}
\begin{theorem}[No Pause]
\[
a + b = c
\]
\end{theorem}
\begin{theorem}[Pause (formula)]
\[
{a + b = \pause c}
\]
\end{theorem}
\begin{theorem}[Pause and Negative VSpace]
\[
a + b = \pause c
\]
\vspace{-0.60cm}
\end{theorem}
\begin{theorem}[Pause (text)]
a + b = \pause c
\end{theorem}
\end{frame}
\end{document}