如何使用 beamer note 页面中的 [plain] 选项?

如何使用 beamer note 页面中的 [plain] 选项?

我尝试使用笔记页plain的样式beamer,但不起作用。我试过:

\documentclass{beamer}
\setbeameroption{show notes}
\begin{document}
\begin{frame}
content
\end{frame}

\note[plain]{note text}
\end{document}

但它仍然产生默认样式。我做错了什么?

答案1

plain选项必须传递给note page模板:

\documentclass{beamer}
\setbeameroption{show notes}
\setbeamertemplate{note page}[plain]

\begin{document}

\begin{frame}
content
\end{frame}

\note{note text}

\end{document}

相关内容