我在使用 beamer 时遇到了一个问题,笔记中的第一段与后续段落的间距不同。
梅威瑟:
\AtBeginDocument{\setbeameroption{show notes on second screen=left}}
\documentclass[17pt]{beamer}
\usepackage{pgfpages}
\setbeamertemplate{note page}{\insertnote}
\begin{document}
\begin{frame}{Title}
Content
\end{frame}
\note{Hello everyone, and welcome to my talk. Today I'll be presenting
about Title.}
\begin{frame}{Introduction}
Content
\end{frame}
\note{Title first came to prominence in 1883 when Author first described
the phenomenon.
There has since been a great deal of subsequent research on it.}
\end{document}
结果是
第一段是单倍行距,但下一段是双倍行距。
知道如何修复此问题吗?
答案1
正如第一个答案中提到的使用 Beamer 和 Article 类显示幻灯片,这似乎是一个已知错误。andrew 提供的解决方案确实解决了这个问题,但您不会在备注页上看到幻灯片的微小图像。我使用的修复方法确实包括幻灯片的图像,方法是添加一个额外的空白段落,如下所示:
\note{Title first came to prominence in 1883 when Author first described
the phenomenon.
There has since been a great deal of subsequent research on it.
}
答案2
我可以通过将模板更改为来修复它
\setbeamertemplate{note page}{\insertnote\par}