叠加和框架对齐

叠加和框架对齐

我能否拥有一个可以使用叠加层更改其对齐方式的框架?我想要这样的东西:

   \begin{frame}{[t<2>]}{Top alignment}
    This is the content of the slide. 
   \end{frame}

第一张幻灯片居中对齐,第二张幻灯片顶部对齐,依此类推。在 LaTeX Beamer 中可以实现吗?

答案1

你可以用 来固定某些文本的垂直位置\vspace{}。例如:

\documentclass{beamer}
\begin{document}
\begin{frame}
{Top alignment} 
\only<1>{\vspace{-5cm}}
\only<3>{\vspace{5cm}}
This is the content of the slide. 
\end{frame}
\end{document}

您也可以\vfill在文本之前或之后使用。

相关内容