我的 Beamer 演示文稿中的第一张幻灯片是全屏 PDF,我\includepdf
从pdfpages
包中使用它。我想使用第一张幻灯片添加演讲笔记\note
,并让这些笔记显示在我的第二台显示器上。我尝试了以下最小示例:
\documentclass{beamer}
\usepackage{pdfpages}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen=right}
\begin{document}
\includepdf[pages=1]{example-image-a}
\note{This is a note}
\end{document}
但是,编译失败,出现以下错误消息:
! Undefined control sequence.
<argument> \beamer@shortframetitle
l.8 \note{This is a note}
仅当使用 制作演示文稿中的第一张幻灯片时才会出现此问题。在演示文稿的后面部分\includepdf
向幻灯片添加注释可以正常工作。\includepdf
除了在文档开头添加一个空框之外,我怎样才能最好地解决这个问题?
答案1
此处的 pdf 以经典形式包含\includegraphics
在定制的background canvas
投影机模板上。
\documentclass{beamer}
\usepackage{pdfpages}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen=right}
\begin{document}
{
\setbeamertemplate{background canvas}{%
\includegraphics[
width=\paperwidth,
height=\paperheight,
keepaspectratio=false,
% page=1
]{example-image-a}%
}
\begin{frame}[plain]
\end{frame}
}
\note{This is a note}
\end{document}