3

我看了这个问题,但给定的方法似乎不适用于脚注(参见 MWE)。我想知道如何使用kableExtra包在表格脚注中添加超链接。

knitr::kable(
              x       = mtcars[1:4, 1:5]
            , format  = "latex"
            , caption = "Table Caption with hyperlink[note]"
            , escape  = FALSE
            ) %>%
  kableExtra::add_footnote("\\href{https://github.com/haozhu233/kableExtra}{kableExtra}")
4

1 回答 1

5

如果 kableExtra > 0.5.0,您可以escape在脚注中使用。

library(kableExtra)
knitr::kable(mtcars[1:4, 1:5], 
         format  = "latex", 
         caption = "Table Caption with hyperlink[note]", 
         escape  = FALSE
        ) %>%
  add_footnote("\\href{https://github.com/haozhu233/kableExtra}{kableExtra}",
                       escape = F)
于 2017-09-11T14:42:33.860 回答