幻灯片注释中的 Beamer 脚注

幻灯片注释中的 Beamer 脚注

我有一张幻灯片和一条注释。每段文本都有脚注。在幻灯片中,脚注标记和脚注文本出现在它们应该出现的位置。在注释中,脚注标记出现在正确的位置,但脚注文本不见了。我该如何让它出现?

梅威瑟:

\begin{document}
\setbeameroption{show notes}
\begin{frame}
Stuff\footnote[frame]{footnoted}
\note{Chat about stuff.\footnote{footnoted too}}
\end{frame}
\end{document}

答案1

您可以像这样破解笔记包以显示脚注:

\documentclass{beamer}
\makeatletter
\addtobeamertemplate{note page}{}{
\begingroup
\vfill
\usebeamercolor*[fg]{footnote}%
\footnoterule%
\unvbox \beamer@footins%
\global\setbox\beamer@footins=\box\voidb@x%
\endgroup  
\vskip0.2cm
}
\makeatother
\begin{document}
\setbeameroption{show notes}
\begin{frame}
Stuff\footnote[frame]{footnoted}
\note{Chat about stuff.\footnote{footnoted too}}
\end{frame}
\end{document}

在此处输入图片描述

相关内容