gpt4 book ai didi

r - knitr 中的数字标题和标签

转载 作者:行者123 更新时间:2023-12-03 10:11:06 25 4
gpt4 key购买 nike

我是 Knitr 的新手。我正在尝试使用 r 块制作报告,但我无法弄清楚如何使用标题和标签稍后引用该图。
这是我想做的一个例子:

---
title: "Plotting"

author: "xx"

date: '2015-08-10'

output: pdf_document
---
```{r figs, echo=FALSE, fig.width=7,fig.height=6,fig.cap="plotting example"}

par(mfrow=c(2,2))
plot(1:10, col=2)
plot(density(runif(100, 0.0, 1.0)))
plot(runif(100, 0.0, 1.0),type="l")
```

in Figure \ref{fig:figs} we see examples of plotting in R.

我想要一个标题“绘图示例”,并有一个标签,所以我可以在文本中使用 Figure\ref{fig.label} 。我试过 fig.cap 和 fig.lp,它们都不起作用。
如果有人可以提供帮助,我将不胜感激。

最佳答案

您可以通过包含 fig_caption: yes 来实现这一点。在标题中:

---
title: "Plotting"
output:
pdf_document:
fig_caption: yes
---

```{r figs, echo=FALSE, fig.width=7,fig.height=6,fig.cap="\\label{fig:figs}plotting example"}
par(mfrow=c(2,2))
plot(1:10, col=2)
plot(density(runif(100, 0.0, 1.0)))
plot(runif(100, 0.0, 1.0),type="l")
```

in Figure \ref{fig:figs} we see examples of plotting in R.

click here to see a screenshot

请注意,图标题标签应包含在带有双反斜杠的标题中,如上所示。

关于r - knitr 中的数字标题和标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31926623/

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