我将这些数字标记为这样。
tableView
然后在每个块中
---
title: "xxx"
output:
pdf_document:
fig_caption: true
---
这很好用。然而,在我在循环中绘制多个数字的块中,我无法指定标题。这根本不会产生标题:
```{r, fig.cap="some caption"}
qplot(1:5)
```
如何指定一个数字,该数字与每个地块的第一个数字相同?
答案 0 :(得分:11)
您可以使用长度为2(或循环大小)的fig.cap参数:
```{r, fig.cap=c("another caption", "and yet an other")}
qplot(1:5)
qplot(6:10)
```