笔者使用Beamer制作学术PPT,最近刚由Berlin主题切换为Warsaw主题,却发现在block的title中插入脚注footnote,竟然无法在页面底部显示。
解决方法:使用 \footnotemark
和 \footnotetext
分离脚注标记和脚注内容
\documentclass{beamer}
\usetheme{Warsaw}
\usepackage{lipsum}
\begin{document}
\begin{frame}
\begin{block}{标题\footnotemark}
内容内容
\end{block}
\footnotetext{这是脚注内容,正常显示在页面底部。}
\end{frame}
\end{document}
\footnotemark
放在标题中,生成脚注标记但不输出脚注内容。\footnotetext
放在frame里(block外),显示脚注内容。