我知道我可以在.Rmd文件中包含用户生成的图片,例如:
!["Title of my picture goes here"](path/to/my/image/picture001.png)
我想知道是否有自动包含路径的方式,因此我只需要写!["Title of my picture goes here"](picture001.png)
而R Markdown会搜索 picture001。 png 在路径/到/ my / image / 。
答案 0 :(得分:0)
尝试将默认目录设置为r setup chunk中的全局选项:
```{r setup, include=FALSE}
knitr::opts_chunk$set(fig.path='path/to/my/image/', echo = TRUE)
```