当我使用Rmarkdown渲染github_document
时,我尝试将图形包含在标题中。但是,如果在fig.cap
中将r
指定为output
,我发现github_document
在ymal
中继中不起作用。 Rmarkdown cheatsheet中也显示了这一点。
我的代码如下:
---
title: "This is the title of my document..."
author: "my name"
output: github_document
---
```{r, out.width='100%', fig.cap= "This is Caption", fig.align = "left", cache = FALSE}
knitr::include_graphics("XXX.png")
```
我可以通过在* this is caption*
主干下面添加r
来解决此问题。但是我仍然不明白为什么rmarkdown不支持在此特定输出类型中直接使用fig.cap
。
我确定我在这里遗漏了一些东西,但是有什么想法吗?非常感谢!