Beamer 2-up,投影框在上方,注释在下方

Beamer 2-up,投影框在上方,注释在下方

如何打印出我的 Beamer 幻灯片 2 张合一的打印件,其中显示的框架位于页面的上半部分,而下一个\note{}框架位于页面的下半部分?如果没有\note{}页面,下半部分应该是空白的。如果我这样做\pgfpagesuselayout{2 on 1},没有注释的页面将删除框架和相应注释在单个页面上的对齐。 正是我想要的,只不过我不是用笔在行上手写笔记,而是用\notes。从该博客上的评论来看,我不是唯一一个喜欢这个功能的人。

答案1

这应该可以工作,无需使用其他 .sty 文件。可以说,这是对在演示时保留第二屏幕笔记的滥用,但它确实有效,而且非常简单。

在此处输入图片描述

\documentclass[handout]{beamer}
\title{The Title}
\author{The Author}
\usetheme{Copenhagen}
\usepackage{pgfpages}
\pgfpagesuselayout{2 on 1}[a4paper,border shrink=5mm] % could also use letterpaper
\setbeamertemplate{note page}[plain] % Beamer manual, section 19.1
\setbeameroption{show notes on second screen=bottom} % Beamer manual, section 19.3

\begin{document}
\begin{frame}
Here's some content, with no notes added.
\end{frame}
\begin{frame}
Here's some content, with notes added.
\end{frame}
\note{
Here are things to remember:
\begin{enumerate}
\item Stress this first.
\item Then this.
\end{enumerate}
}
\end{document}

相关内容