我是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.
Run Code Online (Sandbox Code Playgroud)
我想有一个标题"绘图示例",并有一个标签,所以我可以在文本中使用Figure\ref {fig.label}.我试过fig.cap和fig.lp,它们都没有用.如果有人可以提供帮助,我将不胜感激.