Was ist falsch daran, eine Fußnote in einen Notizrahmen einzufügen? In diesem Beispiel wird die erste Fußnote (in einem Standardrahmen) korrekt angezeigt, aber der Inhalt der zweiten (in einem Notizrahmen) ist unsichtbar…
\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}
Antwort1
Die Beamer-Vorlage note page
druckt keine Fußnoten. Also suchte ich nach dem Code, der die Fußnote auf normalen Folien druckt, und fügte ihn note page
mithilfe des \addtobeamertemplate
Makros der Vorlage hinzu (und fügte etwas vertikalen Abstand hinzu, um sie richtig auszurichten).
\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}