在bookdown中使用kableExtra脚注时如何防止表格重复编号?

问题描述 投票:0回答:1

我在 bookdown 中使用 kableExtra 表格来合并表格脚注。但是,每当我添加脚注时,表格都会以双数字索引结束。有办法防止这个问题吗?任何帮助将不胜感激。

请考虑以下 MWE(以及最终书籍的裁剪图像):

---
title: "Double numbering problem of tables when using footnotes"
site: bookdown::bookdown_site
documentclass: book
---
# Problematic footnotes
## Table 1
```{r table1, echo=FALSE, message=FALSE}
library(kableExtra)
kable((iris[1:2,]),
caption = "This is a table without footnote (and correct numbering).")
```
## Table 2
```{r table2, echo=FALSE, message=FALSE}
kable(iris[1:2,],
caption = "This is a table without footnote (and **erroneous numbering**).") %>%
footnote(general = "This is my footnote.")
```

r-markdown bookdown kableextra caption footnotes
1个回答
0
投票

使用 kableExtra::kbl(dt) 代替 #knitr::kable(dt);更多这里https://github.com/haozhu233/kableExtra/issues/831

© www.soinside.com 2019 - 2024. All rights reserved.