RMarkdown禁止自动图形编号为html

时间:2019-12-21 13:31:47

标签: r r-markdown

有没有办法抑制由rmarkdown进行的自动图形编号? R渲染的第一个图是第二个图,它添加了Figure 1:前缀,这不是我所需要的。我看到了PDF输出而不是html输出的解决方案。

最好

十香

1 个答案:

答案 0 :(得分:0)

如果没有minimal reproducible example,很难知道您要寻找的内容。但是也许您正在寻找bookdown::html_document2输出。

请尝试以下操作:

---
title: "Example Document"
author: "Your name here"
output:
  bookdown::html_document2
---


```{r cars, fig.cap = "plot"}   # Figure with caption
plot(cars)
```


```{r cars3, fig.cap = ""} # Figure without caption
plot(cars)
```

这是上面的输出:

enter image description here