在 Beamer 中演示时可以看到我的脚本吗?

在 Beamer 中演示时可以看到我的脚本吗?

我喜欢用 Beamer 制作的幻灯片,而且我正在使用它。

然而,我也非常喜欢 PowerPoint 能够在我的屏幕上显示我的脚本并在演示时在投影仪上显示幻灯片。

是否有办法使用 Beamer 或其他 TeX 技术来实现这一点?

答案1

有关详细信息和更多选项,请参阅第 211 页开始的手册。

这是在第二个屏幕上添加注释的方法。重要的是,您使用的 PDF 查看器可以处理此操作!

\documentclass{beamer}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen}
\begin{document}
  \begin{frame}{First Frame}
    This is some text for the first slide.
    \note{Talk about putting text on the slide.}
    \note{Don't forget the text!}
  \end{frame}
  \begin{frame}{Second Frame}
    This is some text for the second slide.
    \note{Explain how the second thing follows from the first.}
  \end{frame}
  \begin{frame}{Third Frame}
    This is some text for the third slide.
    \note{Use that example from the film to illustrate the point.}
    \note{Don't spend more than 5 minutes on this!}
  \end{frame}
\end{document}

带注释的幻灯片

答案2

这是一种方法。您需要用您自己的 beamer PDF 替换 beamer_test。

如果您不想覆盖脚本,只需使用 \newpage 而不是 \pause。

\documentclass{article}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{everypage}
\usepackage[display]{texpower}

\newcounter{pdfpage}
\geometry{paperwidth=10in,paperheight=3.8in,left=5.2in,top=.2in,right=.2in,bottom=.5in}
\AddEverypageHook{\stepcounter{pdfpage}
 \raisebox{-2.8in}[0pt][0pt]{\rlap{\hspace{-1in}%
 \includegraphics[page=\thepdfpage]{beamer_test}}}}
\parindent=0pt
\parskip=\baselineskip

\begin{document}\Large
This is the script for the first page of overlay.

\pause
This is the script for the second page of overlay.
\end{document}

beamer plus 脚本


第二页

另一方面,看来我又重新发明了轮子。

相关内容