使用 handoutWithNotes 时出现“未定义的控制序列”错误

使用 handoutWithNotes 时出现“未定义的控制序列”错误

我想打印与handoutWithNotes包相关的讲义幻灯片beamer,但简单的尝试

\documentclass[handout]{beamer}
\usepackage{pgfpages}
\usepackage{handoutWithNotes}
\pgfpagesuselayout{2 on 1 with notes}[a4paper,border shrink=5mm]

\begin{document}
\begin{frame}
My first slide
\end{frame}
\begin{frame}
Second one
\end{frame}
\begin{frame}
Third
\end{frame}
\end{document}

总是返回错误消息,例如

! Undefined control sequence.
\@begindocumenthook ...ox { \vskip .05\pageheight
                                                  Notes\vskip .1\pageheight ...
l.8 \begin{document}

显然它带有\pgfpagesuselayout{2 on 1 with notes}[a4paper,border shrink=5mm]“带有注释”的论点。

我使用 MiKTeX 2.8 或 2.9 在 Windows XP 或 Windows 10 下运行该文件。

答案1

为我修复该问题的方法是将 中的替换\pageheight为。另请参阅\paperheighthandoutWithNotes.styhttps://github.com/gdiepen/latexbeamer-handoutWithNotes/pull/5

相关内容