如何让注释页pgfpages
显示在幻灯片左侧?(我想这样做,以便使用 OBS 的在线视频的绿屏幻灯片显示在左侧)。此 MWE 默认将注释显示在右侧。
\documentclass{beamer}
\usepackage{color}
\pagecolor{green}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen}
\setbeamertemplate{note page}{\insertnote}
\begin{document}
\begin{frame}
A frame.
\note{}
\end{frame}
\end{document}
给出:
答案1
如果你看一下beamer
手动的,您会在第 19.3 节找到以下解释:
\setbeameroption{show notes on second screen=⟨location⟩}
给出此选项后,将创建您的演讲的双屏版本,有关详细信息,请参阅第 22 节。第二个屏幕默认显示在右侧,显示您的笔记。通过指定不同的⟨地点⟩,您还可以将第二个屏幕放在
left
、bottom
或上top
。
所以你应该使用
\setbeameroption{show notes on second screen=left}
根据您的需要指定位置。