Skip to content

Instantly share code, notes, and snippets.

@AndiH
Created October 19, 2016 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndiH/8d0b8ae0f0823f0b5081c0fc92986e4b to your computer and use it in GitHub Desktop.
Save AndiH/8d0b8ae0f0823f0b5081c0fc92986e4b to your computer and use it in GitHub Desktop.
Snippet for adding speaker notes to a LaTeX Beamer presentation
\tikzset{
notes box/.style={
anchor=north,
fill=white,
text width=0.98\paperwidth,
outer sep=0pt,
font=\relsize{-2}
},
notes box additional/.style={},
notes box title/.style={
anchor=north east,
font=\itshape\bfseries\relsize{-1},
text=fzjgray50
}
}
\DeclareDocumentCommand{\slidenote}{ O{Notes} m } {%
\begin{tikzpicture}[overlay, remember picture]
\node (notes) [notes box, notes box additional] at (current page.south) {#2};
\node [notes box title] at (notes.north east) {#1};
\end{tikzpicture}%
}
% …
\begin{frame}
\frametitle{TITLE}
CONTENT
\slidenote{%
\begin{itemize}
\item Some notes
\item Here, more!
\end{itemize}%
}
\end{frame}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment