메모 프레임의 각주

메모 프레임의 각주

노트 프레임에 각주를 넣으면 무엇이 문제인가요? 이 예에서 첫 번째 각주(표준 프레임)는 올바르게 표시되지만 두 번째 각주(노트 프레임)의 내용은 보이지 않습니다.

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

여기에 이미지 설명을 입력하세요

관련 정보