我是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,它们都没有用。 如果有人可以提供帮助,我将不胜感激。
答案 0 :(得分:44)
您可以通过在标题中添加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.
请注意,图标题标签应该包含在标题中并带有双反斜杠,如上所示。