制作幻灯片 + 带有注释的讲义?

制作幻灯片 + 带有注释的讲义?

我有一个用于 Beamer(Latex)演示的最小示例。

我需要一些讲义,非常重要的是,上面有我自己的笔记,重要的事情要说,就在小幻灯片的右侧。每张 A4 纸上有 2 或 3 张带有笔记的幻灯片。

从一个文档中做一些小改动,是否有一些可能的宏,以便我可以隐藏我的笔记以制作常规幻灯片,并告诉 pdflatex 制作一个 beamer 类演示文稿(非常普通,横向)以及一个讲义类文档(a4 纵向),其中包含我要说的所有内容?然后,Pdflatex 会创建一个包含幻灯片的常规 pdf,还会创建一个包含讲义的 pdf。这非常类似于微软自 1995 年甚至更早以来的所有 Powerpoint 版本都可以做到的事情。

我原本以为可以使用一些 usepackage pdfpages 来实现,先创建一些缩略图,然后添加一些小页面来显示重要信息。不过,这太复杂了。

也许你会发现一个更好的主意!

我需要尽快。如果您有任何可能的想法,请告诉我。这可能会非常有帮助!

提前谢谢您!

\documentclass{beamer}
\begin{document}
\title{Simple Beamer Class}   
\author{Sascha Frank} 
\date{\today} 

\frame{\titlepage} 
\frame{\frametitle{Table of contents}\tableofcontents} 
\section{Section no.1} 
\frame{\frametitle{Title} 
Each frame should have a title.
}
\subsection{Subsection no.1.1  }
\frame{ 
Without title somethink is missing. 
}

\end{document}

答案1

在以下示例中将\documentclass{beamer}创建一个常规演示文稿,\documentclass[handout]{beamer}其中包含注释和每页 2x2 的讲义版本。

\documentclass[handout]{beamer}
\usepackage{pgfpages}

\mode<handout>{%
    \pgfpagesuselayout{4 on 1}[a4paper] 
    \setbeameroption{show notes}
}

\begin{document}

\begin{frame}
    content for the presentation
    \note{your important notes}
\end{frame}

\begin{frame}
    another frame
    \note{another note}
\end{frame}

\end{document}

在此处输入图片描述

相关内容