投影仪幻灯片侧面的注释

投影仪幻灯片侧面的注释

我找到了一个不错的软件包pgfpages,它允许在现有投影仪幻灯片的侧面添加注释。但是我想删除出现在第二个屏幕顶部的两个额外的迷你屏幕。有人知道如何删除它们吗?见下图。在此处输入图片描述

期望得到以下输出! 在此处输入图片描述

梅威瑟:

\documentclass{beamer}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen}
\begin{document}
\begin{frame}

A frame.
\note{Two mini screen boxes above are not needed. How to remove them? Only this text box is needed.}
\end{frame}
\end{document}

答案1

你可以通过修改相应的 beamer 模板以任何你想要的方式格式化 notepage:

\documentclass{beamer}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen}

\setbeamertemplate{note page}{\insertnote}

\begin{document}
\begin{frame}

A frame.
\note{Two mini screen boxes above are not needed. How to remove them? Only this text box is needed.}
\end{frame}
\end{document}

相关内容