You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
footnote with threeparttable
to create a long table with footnotes for a pdf
I'd like the footnotes to show on every page
ideally there'd be an every_page boolean argument for footnote
looks like the change would go in footnote.R, in the section starting line 287
can't create a pull because I'm not sure where bottomrule_regexp comes from
here's a mre with a partial solution:
set up
knitr::opts_chunk$set(echo = TRUE)
library(kableExtra)
dat <- data.frame(
A = LETTERS[rep(1:26, each = 2)],
B = letters[rep(1:26, 2)],
n = 0:51
)
names(dat)[3] <- paste0(names(dat)[3], "\\tnote{1}")
current
dat_kbl <- dat |>
kbl(format = "latex", caption = "Caption",
escape = FALSE, booktabs = TRUE, longtable = TRUE) |>
kable_styling(
latex_options = "repeat_header") |>
footnote(
number = c(
"rows with n = 0 may be deleted in the final table"),
threeparttable = TRUE)
dat_kbl
I'm using
to create a long table with footnotes for a pdf
I'd like the footnotes to show on every page
ideally there'd be an
every_page
boolean argument for footnotelooks like the change would go in footnote.R, in the section starting line 287
can't create a pull because I'm not sure where
bottomrule_regexp
comes fromhere's a mre with a partial solution:
set up
current
modification
The text was updated successfully, but these errors were encountered: