如何使用 Beamer 添加注释空间

如何使用 Beamer 添加注释空间

我目前正在准备一个小型演讲beamer。到目前为止没有问题。

只不过我正在寻找获得注释空间(1/2 张幻灯片)的最佳方式,就像使用 Powerpoint 或类似工具一样。这样我就可以打印幻灯片并在右侧添加自定义注释。(即比\frame[plain]{}每张幻灯片后都添加注释更好的方式)

如果我说的不够清楚的话,关于外观:

带注释的幻灯片

答案1

你可能想看看handoutWithNotes包裹。

\documentclass[handout]{beamer}
\usepackage{handoutWithNotes}
\pgfpagesuselayout{3 on 1 with notes}[a4paper,border shrink=5mm]

\begin{document}
\begin{frame}
My first slide
\end{frame}
\begin{frame}
Second one
\end{frame}
\begin{frame}
Third
\end{frame}
\end{document}

这为您提供了(带有Berlin)主题:

在此处输入图片描述

您可以在这里找到一些示例:http://www.guidodiepen.nl/2009/07/creating-latex-beamer-handouts-with-notes/

我在 CTAN 上没有找到这个包。所以它不会出现在你的 LaTeX 发行版中,你需要手动安装它。

相关内容