Ausfüllbares Notizfeld für Handout einer Beamer-Präsentation
Ich gebe im Präsenzmodus gerne Handouts für Notizen aus. Für eine digitale Veranstaltung würde ich gerne anstelle der Notizlinien ein bzw. jeweiles für jede Folie ein frei ausfüllbares Textfeld, in dem man eigene Notizen eingeben und dann als neues Dokument abspeichern kann.
\begin{filecontents}{handoutwithnotes}
\documentclass{beamer}
\usepackage{pgfpages}
\usepackage{filecontents}
\begin{filecontents}{handout}
\ \pgfpagesdeclarelayout{2 on 1 with notes landscape} notes} {
\edef\pgfpageoptionheight{\the\paperheight}
\edef\pgfpageoptionwidth{\the\paperwidth}
\edef\pgfpageoptionborder{0pt}
}
{\setkeys{pgfpagesuselayoutoption}{landscape}
{
\pgfpagesphysicalpageoptions
{%
logical pages=4,%
physical height=\pgfpageoptionheight,%
physical width=\pgfpageoptionwidth,%
% last logical shipout=3%
last logical shipout=2%
}
\pgfpageslogicalpageoptions{1}
{%scale=1,center=\pgfpoint{.3\pgfphysicalwidth}{.75\pgfphysicalheight}%
{%scale=.70,center=\pgfpoint{.25\pgfphysicalwidth}{.67\pgfphysicalheight}%
}%
\pgfpageslogicalpageoptions{2}
{%scale=1,center=\pgfpoint{.3\pgfphysicalwidth}{.25\pgfphysicalheight}%
{%scale=.70,center=\pgfpoint{.25\pgfphysicalwidth}{.33\pgfphysicalheight}%
}%
\pgfpageslogicalpageoptions{3}
{%
border shrink=\pgfpageoptionborder,%
resized width=.7\pgfphysicalwidth,%
width=.5\pgfphysicalwidth,%
resized height=.4\pgfphysicalheight,%
center=\pgfpoint{.75\pgfphysicalwidth}{.3\pgfphysicalheight},%
height=.5\pgfphysicalheight,%
center=\pgfpoint{.75\pgfphysicalwidth}{.67\pgfphysicalheight},%
copy from=3
}%
}%
\pgfpageslogicalpageoptions{4}
{%
border shrink=\pgfpageoptionborder,%
resized width=.7\pgfphysicalwidth,%
width=.5\pgfphysicalwidth,%
resized height=.4\pgfphysicalheight,%
center=\pgfpoint{.75\pgfphysicalwidth}{.8\pgfphysicalheight},%
height=.5\pgfphysicalheight,%
center=\pgfpoint{.75\pgfphysicalwidth}{.33\pgfphysicalheight},%
copy from=4
}%
\AtBeginDocument{
\newbox\notesbox
\setbox\notesbox=\vbox{
\hsize=\paperwidth
\vskip-1in\hskip-1in\vbox{
\vskip1cm
Notizen\vskip1cm
\hrule width\paperwidth\vskip1cm
\hrule width\paperwidth\vskip1cm
\hrule width\paperwidth\vskip1cm
\hrule width\paperwidth\vskip1cm
\hrule width\paperwidth\vskip1cm
\hrule width\paperwidth\vskip1cm
\hrule width\paperwidth}
}
\pgfpagesshipoutlogicalpage{3}\copy\notesbox
\pgfpagesshipoutlogicalpage{4}\copy\notesbox
}
\pgfpagesshipoutlogicalpage{3}\copy\notesbox
\pgfpagesshipoutlogicalpage{4}\copy\notesbox
}
}
\end{filecontents}
\documentclass[table,usenames,dvipsnames,handout]{beamer}
\input{handoutwithnotes.sty}
\RequirePackage{pgfpages}
\input{handout}
\pgfpagesuselayout{2 on 1 with notes landscape}[a4paper,border shrink=5mm]
\begin{document}
asdfasdf
\begin{frame}
Teasdf
\end{frame}
\end{document}