我正在准备一个使用 metropolis 主题的 Beamer 演示文稿。在某些幻灯片中,我想在幻灯片的最底部添加文本。这是通过添加
\newcommand{\btVFill}{\vskip0pt plus 1filll}
在序言和
\begin{frame}
framecontent
\btVFill
text at the bottom of the slide.
\end{frame}
只要我的页脚不存在,即只要我在序言中定义,这就完全符合我的设想
\setbeamertemplate{footline}[]{}
但是,我希望将页脚环境中的帧编号放在右下角,例如
\setbeamertemplate{footline}[frame number]{}
如果我添加页脚,btVfill 命令会将文本移动到页脚所占空间的“上方”(考虑到我对页脚的简约定义,该空间为空)。
您对如何轻松地将文本放在幻灯片的最底部并保持最小页脚有什么建议吗?解决方案是不使用 vspace 命令,因为我需要在每张幻灯片中调整它。
谢谢你的建议,Leo
答案1
滥用导航符号可能会导致以下后果:
\documentclass{beamer}
\usetheme{moloch}
\setbeamertemplate{footline}{}
\setbeamertemplate{page number in head/foot}[totalframenumber]
\setbeamertemplate{navigation symbols}{\footnotesize\usebeamertemplate{page number in head/foot}}
\begin{document}
\begin{frame}[s]
framecontent
\vfill
text at the bottom of the slide.
\end{frame}
\end{document}