如何在由rmarkdown生成的pdf_document中的表格浮動上獲取標題?由rmarkdown生成的pdf文檔中的表格上的標題
使用
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',但無濟於事。