gpt4 book ai didi

r - 在 rmarkdown 中为图形/绘图添加标题

转载 作者:行者123 更新时间:2023-12-02 20:01:42 25 4
gpt4 key购买 nike

我正在使用 rmarkdown 输出 PDF 文档,但是向绘图添加标题似乎不起作用。根据文档,我们应该使用 fig.cap 来指定要传递给 Latex 的图形标题。这是我的代码块的标题:

```{r Plot bond index returns, include = TRUE, fig.cap = "Bond index cumulative returns"}

我确保在 rmarkdown 文档的标题中包含以下行

输出:
pdf_文档:
fig_caption: true

此设置完全消除了生成的 PDF 中整个 block 的输出

最佳答案

你能提供更多细节吗?我无法重现此错误。准系统 .Rmd 看起来像:

---
output: pdf_document
---

```{r echo = FALSE, fig.cap = "Test figure caption."}
plot(pressure)
```

我得到如下输出:

enter image description here

编辑:

看完答案后to this question , 下面的代码生成图形,其中文本穿插在图形中:

---
output: pdf_document
header-includes:
\usepackage{float}
\floatplacement{figure}{H}
---

```{r global_options, include=FALSE}
knitr::opts_chunk$set(fig.pos = 'h')
```

Here is text number preceding figure 1

```{r echo = FALSE, fig.cap = "Test figure caption."}
plot(pressure)
```

Here is text following figure 1

```{r echo = FALSE, fig.cap = "Second test figure caption."}
plot(cars)
```

Here is some final text following the second figure

关于r - 在 rmarkdown 中为图形/绘图添加标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55736668/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com