我有几个rmarkdown-sections,只有几行,每行将文本,标记和代码块混合在一起,我想将其转换为 image 。
我还没有找到一个好的解决方案。也许我现在需要接受pdf输出并进行后期处理?有人有更好的主意吗?
这是rmarkdown-code的示例,我想将其转换为图像。
## Question 2
Please compute the *pearson correlation* between
`mtcars$mpg` and `mtcars$disp` and round it to two digits.
### Answer
```{r}
round(cor(mtcars$mpg, mtcars$disp), 2)
```
PS:我寻找的是https://github.com/yonicd/carbonate之类的东西,但是寻找渲染的rmarkdown而不是源代码。理想情况下,我将拥有用于语法高亮显示和控制rmarkdown文档输出的大多数选项。