将 Beamer 笔记拆分到多个笔记页面

将 Beamer 笔记拆分到多个笔记页面

我最近才notes发现beamer,我正在尝试制作一个包含我演讲内容的带笔记的演示文稿。但是,我的演讲内容很长,导致笔记页面溢出。

因此,我正在寻找类似于环境\allowframebreaks标志的东西frame。有什么东西可以执行此功能吗?

答案1

我所知道的最接近的东西是框架覆盖,在 Beamer 中,一个框架可以有多个覆盖(当您使用时\pause),并且每个覆盖可以有不同的注释。

现在这并不是你想要的。也许你仍然可以用它作为一种解决方法,如果有某种方法可以生成“不可见”的覆盖层,只是为了添加更多的笔记页面。(我猜,只是使用没有内容的暂停会产生重复的幻灯片。)

另一方面,如果你使用它在一个屏幕上显示常规幻灯片,在另一个屏幕上显示笔记幻灯片,那么你想要的是确切地添加多个\pauses 以获得所需数量的覆盖,并通过覆盖拆分您的笔记,以便在显示下一个笔记幻灯片时仍会显示相同的幻灯片。

像这样:

\documentclass[ignorenonframetext,pdfusetitle,17pt]{beamer}
\setbeameroption{show notes}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\title{Twitter Architecture}
\author{SA Group 2\\2010 Fall}

\begin{document}
\mode<all>
\begin{frame}{Peaks}
  \textbf{Variable} request rate 
  \pause

  ``\textbf{Constant}'' resources

  \note<2>{Explain the quotes: They can add more machines, but doing
    so as a reaction to rate change is not the same thing. From the
    point of view of random rate changes, resources are constant.}

  \pause

  \textbf{Spread} load over time
  \pause

  How? \textbf{Message Queues}
  \pause
  \note<4>{Twitter controls request rate}
  \pause
  \note<5>{\texttt{(open (get-door 'podbay))}\\
    \texttt{NIL}\\\texttt{(open (get-door 'podbay))}\\
    \texttt{NIL}\\\texttt{(open (get-door 'podbay))}\\
    \texttt{NIL}\\\texttt{(open (get-door 'podbay))}\\
    \texttt{NIL}\\\texttt{(open (get-door 'podbay))}\\
    \texttt{NIL}\\\texttt{(open (get-door 'podbay))}}
  \note<6>{``You can't fight in here!'' -- Merkin Muffley}
\end{frame}
\mode*
\end{document}

在此处输入图片描述

答案2

我刚刚找到了另一个解决方案。

\begin{frame}{Slide}
\Huge This is slide
\end{frame}

\note{\Huge Note 1}
\newpage
\note{\Huge Note 2}

相关内容