为什么Rmarkdown不会为github_document渲染fig.caption?

时间:2019-06-20 18:11:06

标签: r github r-markdown figure

当我使用Rmarkdown渲染github_document时,我尝试将图形包含在标题中。但是,如果在fig.cap中将r指定为output,我发现github_documentymal中继中不起作用。 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

我确定我在这里遗漏了一些东西,但是有什么想法吗?非常感谢!

0 个答案:

没有答案