如何在rmarkdown生成的pdf_document中获取我的表格浮点数的标题?
使用
output:
pdf_document:
fig_caption: true
和
```{r, fig.cap='a caption'}
myplot
```
使用myplot和指定的标题生成浮动数字。
如何使用xtable生成的表实现相同的功能?
```{r, results='asis', fig.cap='table caption'}
print(xtable(table), comment = FALSE)
```
我尝试在print.xtable中使用floating.environment ='figure',但无济于事。
答案 0 :(得分:10)
或类似地,
```{r results='asis'}
knitr::kable(head(mtcars), format = 'pandoc', caption = 'Title of the table')
```
答案 1 :(得分:3)
'caption'是xtable的参数,而不是print.xtable
```{r, results='asis'}
print(xtable(table, caption='Captions goes within xtable'), comment = FALSE)
```
答案 2 :(得分:2)
如果您正在使用markdown,为什么不坚持使用相同(简单和漂亮)的格式。快速举例:
> library(pander)
> pander(table(mtcars$am), caption = 'foo')
-------
0 1
--- ---
19 13
-------
Table: foo