註釋框中的註腳

註釋框中的註腳

將腳註放在註釋框中有什麼問題嗎?在此範例中,第一個腳註(在標準框架中)正確顯示,但第二個腳註(在註釋框架中)的內容不可見...

\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

投影機模板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}

在此輸入影像描述

相關內容