注釈枠内の脚注

注釈枠内の脚注

脚注をノート フレームに配置すると何が問題になるのでしょうか。この例では、最初の脚注 (標準フレーム内) は正しく表示されますが、2 番目の脚注 (ノート フレーム内) の内容は表示されません...

\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}

ここに画像の説明を入力してください

関連情報