我想在投影仪标题页上放置一些左下对齐的文本,其中标题和名称完全居中。我该怎么做?只要我在居中文本下放置一些内容,它就会偏离中心(升高),因为无论如何居中都适用于幻灯片上的所有内容。MWE:
\documentclass{beamer}
\begin{document}
\begin{frame}
\centering
\Huge{The Title as Such}\\
\Large{The Author}
\begin{minipage}{\textwidth}
\bigskip\bigskip\bigskip\bigskip\bigskip
\normalsize{some text}
\end{minipage}
\end{frame}
\end{document}
答案1
除了minipage
,您还可以使用 TeX 的原语\vskip0pt plus 1filll
,它将插入一个至少为 的垂直跳跃,0pt
但可以无限延伸到可用空间,在我们的例子中是幻灯片的底部。垂直居中的文本将插入两个\newvfill
s 之间,如下所示。
\documentclass{beamer}
\begin{document}
\newcommand{\newvfill}{\vskip0pt plus 1filll}
\begin{frame}
\newvfill
\begin{center}
\Huge{The Title as Such}\par
\Large{The Author}
\end{center}
\newvfill
some text
\bigskip
\end{frame}
\end{document}