在一个块中有多个图的图标题

时间:2016-12-19 20:14:05

标签: r latex rstudio knitr

我将这些数字标记为这样。

tableView

然后在每个块中

---
title: "xxx"
output: 
  pdf_document:
    fig_caption: true
---

这很好用。然而,在我在循环中绘制多个数字的块中,我无法指定标题。这根本不会产生标题:

```{r, fig.cap="some caption"}
qplot(1:5)
```

如何指定一个数字,该数字与每个地块的第一个数字相同?

1 个答案:

答案 0 :(得分:11)

您可以使用长度为2(或循环大小)的fig.cap参数:

```{r, fig.cap=c("another caption", "and yet an other")}
qplot(1:5)
qplot(6:10)
```