注释框中的脚注

注释框中的脚注

将脚注放在注释框中有什么问题?在此示例中,第一个脚注(在标准框中)正确显示,但第二个脚注(在注释框中)的内容不可见……

\documentclass[notes]{beamer}
\begin{document}

\begin{frame}{Test}
  Here is a footnote\footnote{The FN's content!}
\end{frame}

\note{
  This also is a footnote\footnote{Hidden content! Haha!}
}

\end{document}

示例捕获

答案1

beamer 模板note page不打印脚注。因此我搜索了在常规幻灯片上打印脚注的代码,并note page使用\addtobeamertemplate宏将其添加到模板中(并且我添加了一些垂直空间以使其正确对齐)。

\documentclass{beamer}
\setbeameroption{show notes}
\makeatletter
\addtobeamertemplate{note page}{}
{%
  \vfill
  \ifvoid\beamer@footins%  
  \else%
    \begingroup
      \usebeamercolor*[fg]{footnote}%
      \footnoterule%
      \unvbox \beamer@footins%
      \global\setbox\beamer@footins=\box\voidb@x%
    \endgroup 
  \fi%
  \vskip.5em
}
\makeatother
\begin{document}

\begin{frame}{Test}
  Here is a footnote\footnote{The FN's content!}
\end{frame}

\note{
  This also is a footnote\footnote{Hidden content! Haha!}
}

\end{document}

在此处输入图片描述

相关内容