当我在后续幻灯片中添加更多信息时,是否有过渡可以帮助我调整块的位置?
我希望第一个块出现在中间中央,然后在下一张幻灯片上第一个框向上移动以便为第二个块腾出空间等等。默认情况下,第一个框位于顶部。
这是一个最小的工作示例:
\documentclass{beamer}
\begin{document}
\begin{frame}{Abstract}
\begin{exampleblock}<1->{In this presentation ...}
... here is some text.
\end{exampleblock}
\begin{exampleblock}<2->{We will also cover ... }
... here is some more text.
\end{exampleblock}
\end{frame}
\end{document}
第二个示例块出现在第二张幻灯片中,在此之前,我会将第一个示例块平铺到页面中间。感谢您的帮助!
答案1
看起来\only<>{}
给出了您想要的结果:
\documentclass{beamer}
\begin{document}
\begin{frame}{Abstract}
\only<1->{
\begin{exampleblock}{In this presentation ...}
... here is some text.
\end{exampleblock}
}
\only<2->{
\begin{exampleblock}{We will also cover ... }
... here is some more text.
\end{exampleblock}
}
\end{frame}
\end{document}