是否可以使用推介会工具?
默认情况下,注释中会显示日期、标题(两次)和图表说明(如果有)。我希望注释部分只显示注释。我该怎么做?
我正在使用以下选项
\documentclass[aspectratio=169, handout]{beamer}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen}
\note
然后每当我需要笔记时我都会使用命令
\note{my notes somewhere}
为什么会发生这种情况?它不应该只是将命令中的注释可视化吗\note{}
?
从指南中,我只能增加和减少注释的字体大小。
答案1
手册中提到了一些注释页的选项(第 19.1 节指定注释内容在末尾)。其中一个选项是[plain]
,它仅插入注释,而不插入日期和幻灯片预览。
梅威瑟:
\documentclass{beamer}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen}
\begin{document}
\setbeamertemplate{note page}[plain]
\begin{frame}
A frame.
\begin{figure}
A figure.
\caption{A caption.}
\label{fig:ex}
\end{figure}
\note{This is a note shown on the right.}
\end{frame}
\end{document}