pdf-presenter-console 的带注释的 beamer 演示文稿显示错误

pdf-presenter-console 的带注释的 beamer 演示文稿显示错误

我想要一个双页演示文稿,并希望使用 pdf-presenter-console 显示它。这是我的 MWE:

\documentclass[compress,ngerman]{beamer}
\usepackage{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{lmodern}

\usepackage{pgfpages}
\setbeameroption{show notes on second screen=right}

\begin{document}

\begin{frame}
Test

\end{frame}

\begin{frame}
Frame 2
\end{frame}

\begin{frame}
3
\end{frame}

\end{document}

Pdf 看起来不错。但是使用 pdf-presenter-console 打开时会显示三张幻灯片。

使用 pdf-presenter-console 打开的 Pdf 的屏幕截图

插入投影仪后,投影仪的输出将显示演示文稿+笔记,而不是仅显示演示文稿。我该如何处理?问题出在哪里?是 LaTeX 的问题,还是程序的问题,还是笔记本电脑的问题???

答案1

您可以使用该选项notes您可以使用注释位置的手册页为了pdfpc):

-n, --notes=P
    Position of notes on the PDF page. Position can be either left, right, top
    or bottom (Default none)

因此就你的情况而言:

pdfpc --notes=right filename.pdf

如果您插入帧编号,帧将被正确识别。如果某个帧有多个叠加层,则这些叠加层将以小尺寸显示在下方。在您的例子中,帧 2 被识别为帧 1 的叠加层 2。

\addtobeamertemplate{navigation symbols}{}{%
    \usebeamerfont{footline}%
    \usebeamercolor[fg]{footline}%
    \hspace{1em}%
    \insertframenumber
}

相关内容