你能将 r 代码添加到 R Markdown 中的 beamer 注释中吗?

你能将 r 代码添加到 R Markdown 中的 beamer 注释中吗?

例如,

\note{
```{r, ex1}
curve(x)
```
}

当我尝试时,我的 tex 文件包含以下内容

\note{
![](.../figure-beamer/ex1-1.pdf)<!-- -->
}

答案1

据我所知,您不能在 latex 环境或宏中使用 r 块。作为一种解决方法,您可以使用 rmarkdown 语法进行注释(但请确保不要将任何易碎内容包含在注释中)

---
title: ""
output: 
  beamer_presentation: 
    toc: false
    keep_tex: true
header-includes:
  - \setbeameroption{show notes on second screen}
---


test

::: notes
```{r,echo=FALSE}
plot(cars)
```
:::

在此处输入图片描述

相关内容