在 beamer 中,脚注出现在幻灯片底部,但位于脚注线上方。但是,我使用的主题在幻灯片左侧有大量空白空间,非常适合显示这些脚注。有没有办法在 beamer 中定位脚注,使最低脚注的底部始终位于页面底部?
\documentclass{beamer}
\usetheme{Warsaw}
\begin{document}
\begin{frame}
abc\footnote{\color{red}foo}
\end{frame}
\end{document}
该代码产生如下结果:
但我想修改它以产生更像这样的东西:
(在这种情况下看起来很丑陋,但这只是为了演示目的)。
答案1
根据您拥有的脚注数量,您可以使用textpos
它来模拟这样的脚注:
\documentclass{beamer}
\usepackage[absolute,overlay]{textpos} % new package
\usetheme{Warsaw}
\newenvironment{reference}[2]{ %
\begin{textblock*}{\textwidth}(#1,#2) % This is the code
\footnotesize\it\bgroup\color{white}}{\egroup % for the emulated
\end{textblock*}} % footnote environment
\begin{document}
\begin{frame}
\begin{reference}{10mm}{93mm} % this is the code used inside a
$^1$foo % frame to state the position
\end{reference} % of the footnote
abc$^1$
\end{frame}
\end{document}
结果是:
知道投影仪幻灯片的尺寸是 128*96mm,您可以使用此方法将文本放置在任何位置。