如何在最后显示针织块的整体结果

How to show the whole result of a knitted chunk at the end of it

我在 R 中编织时遇到问题。如果一个块有需要打印的东西,该块将被分成两部分,结果显示在每段代码下方,如下图所示:

所以,我希望每个结果都在块的末尾一起显示。有办法吗?
类似于以下内容:

```{r echo=T, eval=FALSE}
message("hello")
message("world")
```
\#\# hello  
\#\# world

非常感谢。

使用 collapse=TRUE,记录在此处:https://yihui.org/knitr/options/#code-evaluation

---
title: hello
---

```{r blockname}
message("hello")
message("world")
```

---
title: hello
---

```{r blockname, collapse = TRUE}
message("hello")
message("world")
```

既然你需要改变R显示东西的方式(命令后输出),那么我们需要借用一个:

---
title: hello
---

```{r blockname, echo = FALSE, include = FALSE}
message("hello")
message("world")
```

```{r showblockname, ref.label='blockname', eval=FALSE}
```

```{r blockname, echo=FALSE, collapse=TRUE}
```