如何在RMarkdown中以功能方式生成敘述?例如,假設我要產生3頭像如何在功能上生成標題?
##First
##Second
#Third
從載體c('First', 'Second', 'Third')
,然後編織成PDF
如何在RMarkdown中以功能方式生成敘述?例如,假設我要產生3頭像如何在功能上生成標題?
##First
##Second
#Third
從載體c('First', 'Second', 'Third')
,然後編織成PDF
您可以參考報頭的一個預先定義的列表中RMarkdown如下:
```{r}
list_of_headers <- c("Title 1", "Title 2", "Title 3")
```
This is an example.
### `r list_of_headers[1]`
Stuff under the first header
### `r list_of_headers[2]`
Etc
### `r list_of_headers[3]`
請給多一點信息,比如你想如何輸出一個實例看,如果你還在尋找答案。 – www