gpt4 book ai didi

r - 由 rmarkdown 生成的 pdf 文档中表格的标题

转载 作者:行者123 更新时间:2023-12-04 09:15:49 24 4
gpt4 key购买 nike

如何在 rmarkdown 生成的 pdf_document 中的表格 float 上获取标题?

使用

output:
pdf_document:
fig_caption: true


```{r, fig.cap='a caption'} 
myplot
```

生成一个带有 myplot 和指定标题的 float 图形。

如何使用 xtable 生成的表实现相同的功能?
```{r, results='asis', fig.cap='table caption'}
print(xtable(table), comment = FALSE)
```

我曾尝试在print.xtable 中使用floating.environment = 'figure',但无济于事。

最佳答案

或者类似地,

```{r results='asis'}
knitr::kable(head(mtcars), format = 'pandoc', caption = 'Title of the table')
```

关于r - 由 rmarkdown 生成的 pdf 文档中表格的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24572188/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com