答案 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)
```
这是上面的输出: