beamer脚注不显示

beamer脚注不显示

我想知道在 LaTeXbeamer演示文稿中添加脚注的适当方法是什么,因为我尝试过\footnote,但它没有显示脚注。它显示编号,但没有脚注。

答案1

以下是在 Beamer 演示文稿中添加脚注的一种方法。通过一个最小的工作示例:

\documentclass{beamer}
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage{hanging}% http://ctan.org/pkg/hanging
\setbeamertemplate{footnote}{%
  \hangpara{2em}{1}%
  \makebox[2em][l]{\insertfootnotemark}\footnotesize\insertfootnotetext\par%
}
\begin{document}
\begin{frame}
  \lipsum*[1]\footnote{Here is a footnote}
\end{frame}
\end{document}

投影机中的脚注

请参阅第 131 页beamer包装文档

答案2

将@user13878 的评论转换为答案:

\footnote[frame]{Here is a footnote}

这样做的好处是简单并且兼容\beamertemplatenavigationsymbolsempty

答案3

进一步调整@user13878的评论,可以使用以下方法将 \footnote 的 [frame] 选项设置为默认选项

\let\oldfootnote\footnote
\renewcommand\footnote[1][]{\oldfootnote[frame,#1]}

事实上,我并不是写上述句子的专家。我可以通过修改来写它们此解决方案大卫·卡莱尔。无论如何,他们与我合作得非常好。

答案4

如果你正在使用一个名为设置空间那么脚注将不会显示在投影仪上。尝试执行以下操作:

\footnote[frame,1]{My footnote}

相关内容