如何在 Rmarkdown beamer 演示文稿中有多个注释页
How to have multiple note page in Rmarkdown beamer presentation
在 Markdown beamer 演示文稿输出中,我的多个笔记页面合并为一个笔记页面。当我查看 .tex 文件时(从我的 keep_text=TRUE
选项),这是因为注释命令放在 \begin{frame} ... \end{frame}
之间而不是 \end{frame}
之外。下面是我在 Rmarkdown beamer 演示文档中的可重现代码。任何帮助将不胜感激。
---
output:
beamer_presentation
keep_tex: yes
---
## slide title
- item 1
- item 2
\note{
long paragraph 1
}
\note{
long paragraph 2
}
我得到这个输出
但我想要的是:
您可以暂时从 markdown 切换到 real latex,并在添加注释之前结束框架:
---
output:
beamer_presentation:
keep_tex: true
header-includes:
- \setbeameroption{show notes}
---
## slide title
- item 1
- item 2
``` {=latex}
\end{frame}
\note{
long paragraph 1
}
\note{
long paragraph 2
}
\begin{frame}
```
normal slide
https://rstudio.cloud/project/1051204
在 Markdown beamer 演示文稿输出中,我的多个笔记页面合并为一个笔记页面。当我查看 .tex 文件时(从我的 keep_text=TRUE
选项),这是因为注释命令放在 \begin{frame} ... \end{frame}
之间而不是 \end{frame}
之外。下面是我在 Rmarkdown beamer 演示文档中的可重现代码。任何帮助将不胜感激。
---
output:
beamer_presentation
keep_tex: yes
---
## slide title
- item 1
- item 2
\note{
long paragraph 1
}
\note{
long paragraph 2
}
我得到这个输出
但我想要的是:
您可以暂时从 markdown 切换到 real latex,并在添加注释之前结束框架:
---
output:
beamer_presentation:
keep_tex: true
header-includes:
- \setbeameroption{show notes}
---
## slide title
- item 1
- item 2
``` {=latex}
\end{frame}
\note{
long paragraph 1
}
\note{
long paragraph 2
}
\begin{frame}
```
normal slide
https://rstudio.cloud/project/1051204