我想将方程式放在 beamer 页面的中心(从上到下查看页面,而不是从左到右 - 我已经知道如何从左到右将方程式置于中心)。我还想在方程式上方添加一些文本。我怎样才能同时完成这两项操作?
答案1
beamer
\documentclass[t]{beamer}
除非您有或 ,否则框架默认垂直居中\begin{frame}[t]
。
您可以使用\vfil
和\vfill
来实现垂直居中的方程式和一些在顶部和方程式之间垂直居中的文本。
代码
\documentclass{beamer}
%\usepackage{lua-visual-debug} % used to show output debug
\begin{document}
\begin{frame}{Title}
Text over equation
\vfill
\(equatio^n\)
\vfill
\end{frame}
\end{document}
输出
这是你想要的吗?