I would like to create notes for a set of slides, but I have problem with my long bibliography. Here is a MWE:
\documentclass{beamer}
\setbeameroption{show only notes}
\usepackage[backend=biber,style=authoryear-comp]{biblatex}
\addbibresource{beamer.bib}
\usepackage[utf8]{inputenc}
\usetheme{Warsaw}
\makeatletter
\def\beamer@framenotesbegin{% at beginning of slide
\gdef\beamer@noteitems{}%
\gdef\beamer@notes{{}}% used to be totally empty.
}
\makeatother
\begin{document}
\begin{frame}[allowframebreaks]
FOO \\[10cm]
BAR
\end{frame}
\appendix
\begin{frame}
\cite{Stack1,Stack2,Stack3,Stack4,Stack5}.
\end{frame}
\begin{frame}[allowframebreaks]
\printbibliography
\end{frame}
\end{document}
With beamer.bib looking similar to:
@MISC{Stack1,
author = {Caesar, Gaius J.},
title = {My long title},
year = {2005},
addendum={Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
}
@MISC{Stack2,
author = {Caesar, Gaius J.},
title = {My long title},
year = {2005},
addendum={Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
}
@MISC{Stack3,
author = {Gaius J., Caesar},
title = {My long title},
year = {2005},
addendum={Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
}
@MISC{Stack4,
author = {Caesar, Gaius J.},
title = {My long title},
year = {2005},
addendum={Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
}
@MISC{Stack5,
author = {Gaius J., Caesar},
title = {My long title},
year = {2005},
addendum={Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.}
}
I used the answer to this question: Run macro on each frame in beamer to generate as many frames in my notes as in my slides. However, if you look at the last note, the bibliography doesn't show up, and as it spans over two frames (if you uncomment the second line \setbeameroption{show only notes}), I don't have the same number of frames in both documents.
Any workaround ?
show only notesto create two separate documents that I could use with Skim. Anyway, yourpfdnupsolution is great, just a quick question though, do you know if there is a way to generatenotes that are not as big as a normal frames ? For example, I would like to generate a PDF with\setbeameroption{show notes}where notes frames are a third of the width of the actual frames. (I don't care if the scaling is done within the.texor withpfdnup) – BigDawg Jun 21 '12 at 14:26\printbibliographyis empty even if there's a\citein the notes. Is this the expected behaviour? – Jander Oct 29 '18 at 13:17