我想从RMarkdown文件创建一个beamer pdf演示文稿。 我想在某些幻灯片中添加发言者注释并为这些注释设置选项(打印或不打印时)。
这些演讲者笔记通常会在演讲者的电脑上显示,而不是在幻灯片上显示。
这可能吗?我怎么能这样做?
答案 0 :(得分:0)
header-includes:
- \setbeameroption{show notes}
## This is a slide
this is (markdown) text in slide
\note{
this is a note (does not understand markdown and
and wont work in other outputs formats (such
as ioslides or Slidy
}
## Next Slide
备注如下:
knit
两次文档,将YAML header-includes
更改为header-includes:
- \setbeameroption{hide notes}
为了创建没有备注的pdf。
默认情况下,Rmarkdown会覆盖以前创建的文档,因此您可能需要:
希望有一种我不了解的更好的方法。