One chunk silently generates output.

```{r, echo = FALSE}
summary(cars)
```

How can the same chunk be automatically listed at the end like this?

```
summary(cars)
```


具有参数knitr::purleval = FALSE(如果存在)将起作用。

最好按名称列出各个块。

最佳答案

我在knitr book第一版的12.1.4节中提到了它,基本上是:

```{r ref.label=knitr::all_labels()}
```

关于r - 在同一文档的末尾列出编织器类型文档的完整代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27933141/

10-10 14:10