blob: 176a2e326e7795ab5c34a61b9756385a9dc4f577 [file] [log] [blame]
Hao Zhucdd7f922018-01-08 11:39:40 -05001#' Add footnote (new)
Hao Zhu8dd65a92018-01-05 20:40:27 -05002#'
Hao Zhue0782ab2018-01-09 13:24:13 -05003#' @description `footnote` provides a more flexible way to add footnote. You
Tim Bates19e03ca2021-06-13 11:20:25 +01004#' can add mutiple sets of footnote using different notation systems. It is
Hao Zhue0782ab2018-01-09 13:24:13 -05005#' also possible to specify footnote section header one by one and print
6#' footnotes as a chunk of texts.
7#'
8#' @param kable_input HTML or LaTeX table generated by `knitr::kable`
9#' @param general Text for general footnote comments. Footnotes in this section
10#' won't be labeled with any notations
11#' @param number A vector of footnote texts. Footnotes here will be numbered.
12#' There is no upper cap for the number of footnotes here
13#' @param alphabet A vector of footnote texts, Footnotes here will be labeled
14#' with abc. The vector here should not have more than 26 elements.
15#' @param symbol A vector of footnote texts, Footnotes here will be labeled
16#' with special symbols. The vector here should not have more than 20 elements.
17#' @param footnote_order The order of how to arrange `general`, `number`,
18#' `alphabet` and `symbol`.
19#' @param footnote_as_chunk T/F value. Default is FALSE. It controls whether
20#' the footnotes should be printed in a chunk (without line break).
21#' @param escape T/F value. It controls whether the contents and titles should
22#' be escaped against HTML or LaTeX. Default is TRUE.
Hao Zhu17814c72018-01-10 11:32:14 -050023#' @param threeparttable T/F value for whether to use LaTeX package
24#' threeparttable. Threeparttable will force the width of caption and
25#' footnotes be the width of the original table. It's useful when you have
26#' long paragraph of footnotes.
Augusto Magalhãesf17fa462019-03-05 12:55:21 +090027#' @param fixed_small_size T/F When you want to keep the footnote small after
28#' specifying large font size with the kable_styling() (e.g. ideal font for headers
Hao Zhu72917f92019-03-15 18:41:42 -040029#' and table content with small font in footnotes).
Hao Zhue0782ab2018-01-09 13:24:13 -050030#' @param general_title Section header for general footnotes. Default is
31#' "Note: ".
32#' @param number_title Section header for number footnotes. Default is "".
33#' @param alphabet_title Section header for alphabet footnotes. Default is "".
34#' @param symbol_title Section header for symbol footnotes. Default is "".
Hao Zhu25efb132018-05-20 22:00:56 -040035#' @param title_format Choose from "italic"(default), "bold" and "underline".
36#' Multiple options are possible.
Hao Zhu149faed2018-10-23 16:36:22 -040037#' @param symbol_manual User can manually supply a vector of either html or
38#' latex symbols. For example, `symbol_manual = c('*', '\\\\dag', '\\\\ddag')`.`
Hao Zhu465fc652018-05-20 20:02:36 -040039#'
Hao Zhu9399dcc2020-08-26 17:27:38 -040040#' @examples
41#' \dontrun{
42#' dt <- mtcars[1:5, 1:5]
Hao Zhu593f57e2018-01-09 13:30:01 -050043#' footnote(knitr::kable(dt, "html"), alphabet = c("Note a", "Note b"))
Hao Zhu9399dcc2020-08-26 17:27:38 -040044#' }
Hao Zhu593f57e2018-01-09 13:30:01 -050045#'
Hao Zhu8dd65a92018-01-05 20:40:27 -050046#' @export
Hao Zhucdd7f922018-01-08 11:39:40 -050047footnote <- function(kable_input,
Hao Zhu1ac13ad2018-01-08 16:12:24 -050048 general = NULL,
49 number = NULL,
50 alphabet = NULL,
51 symbol = NULL,
52 footnote_order = c("general", "number",
53 "alphabet", "symbol"),
54 footnote_as_chunk = FALSE,
Hao Zhue0782ab2018-01-09 13:24:13 -050055 escape = TRUE,
Hao Zhu17814c72018-01-10 11:32:14 -050056 threeparttable = FALSE,
Augusto Magalhãesf17fa462019-03-05 12:55:21 +090057 fixed_small_size = FALSE,
Hao Zhu1ac13ad2018-01-08 16:12:24 -050058 general_title = "Note: ",
59 number_title = "",
60 alphabet_title = "",
Hao Zhu25efb132018-05-20 22:00:56 -040061 symbol_title = "",
Hao Zhu149faed2018-10-23 16:36:22 -040062 title_format = "italic",
63 symbol_manual = NULL
Hao Zhu8dd65a92018-01-05 20:40:27 -050064) {
65 kable_format <- attr(kable_input, "format")
66 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050067 warning("Please specify format in kable. kableExtra can customize either ",
68 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
69 "for details.")
Hao Zhu8dd65a92018-01-05 20:40:27 -050070 return(kable_input)
71 }
Hao Zhu8dd65a92018-01-05 20:40:27 -050072 if (length(alphabet) > 26) {
73 alphabet <- alphabet[1:26]
74 warning("Please don't use more than 26 footnotes in table_footnote ",
75 "alphabet. Use number instead.")
76 }
77 if (length(symbol) > 20) {
78 symbol <- symbol[1:20]
79 warning("Please don't use more than 20 footnotes in table_footnote ",
80 "symbol. Use number instead.")
81 }
Hao Zhue0782ab2018-01-09 13:24:13 -050082 footnote_titles <- list(
83 general = general_title, number = number_title,
84 alphabet = alphabet_title, symbol = symbol_title
85 )
86 footnote_contents <- list(
87 general = general, number = number, alphabet = alphabet, symbol = symbol
88 )
89 notnull <- names(footnote_contents)[!sapply(footnote_contents, is.null)]
90 if (length(notnull) == 0) {return(kable_input)}
Hao Zhu8dd65a92018-01-05 20:40:27 -050091 footnote_order <- footnote_order[footnote_order %in% notnull]
92 footnote_titles <- footnote_titles[footnote_order]
93 footnote_contents <- footnote_contents[footnote_order]
Hao Zhue0782ab2018-01-09 13:24:13 -050094 if (escape) {
95 if (kable_format == "html") {
96 footnote_contents <- lapply(footnote_contents, escape_html)
97 footnote_titles <- lapply(footnote_titles, escape_html)
98 } else {
Hao Zhud4630872018-03-26 11:26:36 -040099 footnote_contents <- lapply(footnote_contents, escape_latex2)
Hao Zhu1aff7342018-04-02 18:33:15 -0400100 footnote_contents <- lapply(footnote_contents, linebreak)
Hao Zhud4630872018-03-26 11:26:36 -0400101 footnote_titles <- lapply(footnote_titles, escape_latex2)
Hao Zhu1aff7342018-04-02 18:33:15 -0400102 footnote_titles <- lapply(footnote_titles, linebreak)
Hao Zhue0782ab2018-01-09 13:24:13 -0500103 }
104 }
Hao Zhu25efb132018-05-20 22:00:56 -0400105 title_format <- match.arg(title_format, c("italic", "bold", "underline"),
106 several.ok = TRUE)
107 footnote_titles <- lapply(footnote_titles, footnote_title_format,
108 kable_format, title_format)
Hao Zhu8dd65a92018-01-05 20:40:27 -0500109 footnote_table <- footnote_table_maker(
Hao Zhu149faed2018-10-23 16:36:22 -0400110 kable_format, footnote_titles, footnote_contents, symbol_manual
Hao Zhu8dd65a92018-01-05 20:40:27 -0500111 )
112 if (kable_format == "html") {
Hao Zhucdd7f922018-01-08 11:39:40 -0500113 return(footnote_html(kable_input, footnote_table, footnote_as_chunk))
Hao Zhu8dd65a92018-01-05 20:40:27 -0500114 }
Hao Zhu19c4fa52018-01-09 12:01:14 -0500115 if (kable_format == "latex") {
Hao Zhu17814c72018-01-10 11:32:14 -0500116 return(footnote_latex(kable_input, footnote_table, footnote_as_chunk,
Hao Zhu72917f92019-03-15 18:41:42 -0400117 threeparttable, fixed_small_size))
Hao Zhu19c4fa52018-01-09 12:01:14 -0500118 }
Hao Zhu8dd65a92018-01-05 20:40:27 -0500119}
120
Hao Zhu25efb132018-05-20 22:00:56 -0400121footnote_title_format <- function(x, format, title_format) {
122 if (x == "") return(x)
123 if (format == "html") {
124 title_style <- ""
125 if ("italic" %in% title_format) {
126 title_style <- paste0(title_style, "font-style: italic;")
127 }
128 if ("bold" %in% title_format) {
129 title_style <- paste0(title_style, "font-weight: bold;")
130 }
131 if ("underline" %in% title_format) {
132 title_style <- paste0(title_style, "text-decoration: underline;")
133 }
134 return(paste0(
135 '<span style="', title_style, '">', x, '</span>'
136 ))
137 } else {
138 if ("italic" %in% title_format) {
139 x <- paste0("\\\\textit\\{", x, "\\}")
140 }
141 if ("bold" %in% title_format) {
142 x <- paste0("\\\\textbf\\{", x, "\\}")
143 }
144 if ("underline" %in% title_format) {
145 x <- paste0("\\\\underline\\{", x, "\\}")
146 }
147 return(x)
148 }
149}
150
Hao Zhu149faed2018-10-23 16:36:22 -0400151footnote_table_maker <- function(format, footnote_titles, footnote_contents,
152 symbol_manual) {
153 if (is.null(symbol_manual)) {
154 number_index <- read.csv(system.file("symbol_index.csv",
155 package = "kableExtra"))
156 if (format == "latex") {
157 symbol_index <- number_index$symbol.latex
158 } else {
159 symbol_index <- number_index$symbol.html
160 }
Hao Zhu8dd65a92018-01-05 20:40:27 -0500161 } else {
Hao Zhu149faed2018-10-23 16:36:22 -0400162 symbol_index <- symbol_manual
Hao Zhu8dd65a92018-01-05 20:40:27 -0500163 }
Hao Zhu8dd65a92018-01-05 20:40:27 -0500164
Hao Zhu149faed2018-10-23 16:36:22 -0400165
Hao Zhu8dd65a92018-01-05 20:40:27 -0500166 if (!is.null(footnote_contents$general)) {
167 footnote_contents$general <- data.frame(
168 index = "",
Hao Zhubab692d2018-01-09 17:49:55 -0500169 footnote = footnote_contents$general
Hao Zhu8dd65a92018-01-05 20:40:27 -0500170 )
171 }
172 if (!is.null(footnote_contents$number)) {
173 footnote_contents$number <- data.frame(
174 index = as.character(1:length(footnote_contents$number)),
175 footnote = footnote_contents$number
176 )
177 }
178 if (!is.null(footnote_contents$alphabet)) {
179 footnote_contents$alphabet <- data.frame(
180 index = letters[1:length(footnote_contents$alphabet)],
181 footnote = footnote_contents$alphabet
182 )
183 }
184 if (!is.null(footnote_contents$symbol)) {
185 footnote_contents$symbol <- data.frame(
186 index = symbol_index[1:length(footnote_contents$symbol)],
187 footnote = footnote_contents$symbol
188 )
189 }
190
191 out <- list()
192 out$contents <- footnote_contents
193 out$titles <- footnote_titles
194 return(out)
195}
196
197# HTML
Hao Zhu1ac13ad2018-01-08 16:12:24 -0500198footnote_html <- function(kable_input, footnote_table, footnote_as_chunk) {
Hao Zhu8dd65a92018-01-05 20:40:27 -0500199 kable_attrs <- attributes(kable_input)
200 kable_xml <- read_kable_as_xml(kable_input)
201
Hao Zhucdd7f922018-01-08 11:39:40 -0500202 new_html_footnote <- html_tfoot_maker(footnote_table, footnote_as_chunk)
Hao Zhu8dd65a92018-01-05 20:40:27 -0500203 xml_add_child(kable_xml, new_html_footnote)
Hao Zhu33387bc2020-10-05 22:52:43 -0400204 xml2::xml_set_attr(kable_xml, "style",
205 paste0(xml2::xml_attr(kable_xml, "style"),
206 "border-bottom: 0;"))
Hao Zhu8dd65a92018-01-05 20:40:27 -0500207 out <- as_kable_xml(kable_xml)
208 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -0500209 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu8dd65a92018-01-05 20:40:27 -0500210 return(out)
211}
212
Hao Zhucdd7f922018-01-08 11:39:40 -0500213html_tfoot_maker <- function(footnote_table, footnote_as_chunk) {
Hao Zhu8dd65a92018-01-05 20:40:27 -0500214 footnote_types <- names(footnote_table$contents)
215 footnote_text <- c()
216 for (i in footnote_types) {
Hao Zhucdd7f922018-01-08 11:39:40 -0500217 footnote_text <- c(footnote_text, html_tfoot_maker_(
Hao Zhu8dd65a92018-01-05 20:40:27 -0500218 footnote_table$contents[[i]], footnote_table$titles[[i]], i,
219 footnote_as_chunk))
220 }
221 footnote_text <- paste0(
222 "<tfoot>", paste0(footnote_text, collapse = ""), "</tfoot>"
223 )
224 footnote_node <- read_html(footnote_text, options = c("RECOVER", "NOERROR"))
225 return(xml_child(xml_child(footnote_node, 1), 1))
226}
227
Hao Zhucdd7f922018-01-08 11:39:40 -0500228html_tfoot_maker_ <- function(ft_contents, ft_title, ft_type, ft_chunk) {
Hao Zhu8dd65a92018-01-05 20:40:27 -0500229 footnote_text <- apply(ft_contents, 1, function(x) {
230 paste0('<sup>', x[1], '</sup> ', x[2])
231 })
232 if (ft_title != "") {
Hao Zhu25efb132018-05-20 22:00:56 -0400233 title_text <- ft_title
Hao Zhu8dd65a92018-01-05 20:40:27 -0500234 footnote_text <- c(title_text, footnote_text)
235 }
236 if (!ft_chunk) {
237 footnote_text <- paste0(
Hao Zhu33387bc2020-10-05 22:52:43 -0400238 '<tr><td style="padding: 0; " colspan="100%">',
Hao Zhu8dd65a92018-01-05 20:40:27 -0500239 footnote_text, '</td></tr>'
240 )
241 } else {
242 footnote_text <- paste0(
Hao Zhu33387bc2020-10-05 22:52:43 -0400243 '<tr><td style="padding: 0; " colspan="100%">',
Hao Zhucdd7f922018-01-08 11:39:40 -0500244 paste0(footnote_text, collapse = " "),
Hao Zhu8dd65a92018-01-05 20:40:27 -0500245 '</td></tr>'
246 )
247 }
Hao Zhu8dd65a92018-01-05 20:40:27 -0500248 return(footnote_text)
249}
Hao Zhucdd7f922018-01-08 11:39:40 -0500250
251# LaTeX
Hao Zhu17814c72018-01-10 11:32:14 -0500252footnote_latex <- function(kable_input, footnote_table, footnote_as_chunk,
Hao Zhu72917f92019-03-15 18:41:42 -0400253 threeparttable, fixed_small_size) {
Hao Zhu1ac13ad2018-01-08 16:12:24 -0500254 table_info <- magic_mirror(kable_input)
Hao Zhu3fc0e882018-04-03 16:06:41 -0400255 out <- solve_enc(kable_input)
Hao Zhu17814c72018-01-10 11:32:14 -0500256
Hao Zhu19c4fa52018-01-09 12:01:14 -0500257 footnote_text <- latex_tfoot_maker(footnote_table, footnote_as_chunk,
Hao Zhu17814c72018-01-10 11:32:14 -0500258 table_info$ncol, threeparttable)
259 if (threeparttable) {
Hao Zhu23bde3a2018-03-28 16:00:55 -0400260 if (table_info$tabular %in% c("longtable", "longtabu") ) {
Hao Zhu17814c72018-01-10 11:32:14 -0500261 out <- sub(paste0("\\\\begin\\{", table_info$tabular, "\\}"),
Hao Zhu27c7c852018-03-26 16:18:23 -0400262 paste0("\\\\begin{ThreePartTable}\n\\\\begin{TableNotes}",
263 ifelse(footnote_as_chunk, "[para]", ""),
Augusto Magalhãesf17fa462019-03-05 12:55:21 +0900264 ifelse(fixed_small_size,"\n\\\\small\n","\n"), footnote_text,
Hao Zhu27c7c852018-03-26 16:18:23 -0400265 "\n\\\\end{TableNotes}\n\\\\begin{",
Hao Zhu17814c72018-01-10 11:32:14 -0500266 table_info$tabular, "}"),
267 out)
Hao Zhu23bde3a2018-03-28 16:00:55 -0400268 out <- sub(paste0("\\\\end\\{",table_info$tabular, "\\}"),
269 paste0("\\\\end{", table_info$tabular,
270 "}\n\\\\end{ThreePartTable}"),
271 out)
272 if (table_info$booktabs) {
273 out <- sub("\\\\bottomrule", "\\\\bottomrule\n\\\\insertTableNotes", out)
274 } else {
275 out <- sub("\\\\hline\n\\\\end\\{longtable\\}",
276 "\\\\hline\n\\\\insertTableNotes\n\\\\end\\{longtable\\}",
277 out)
278 }
Hao Zhu27c7c852018-03-26 16:18:23 -0400279 } else {
Hao Zhu23bde3a2018-03-28 16:00:55 -0400280 if (table_info$tabular == "tabu") {
281 stop("Please use `longtable = T` in your kable function. ",
282 "Full width threeparttable only works with longtable.")
283 }
284 out <- sub(paste0("\\\\begin\\{", table_info$tabular, "\\}"),
285 paste0("\\\\begin{threeparttable}\n\\\\begin{",
286 table_info$tabular, "}"),
287 out)
288 out <- sub(table_info$end_tabular,
289 paste0("\\\\end{", table_info$tabular,
290 "}\n\\\\begin{tablenotes}",
291 ifelse(footnote_as_chunk, "[para]", ""),
Augusto Magalhãesf17fa462019-03-05 12:55:21 +0900292 ifelse(fixed_small_size,"\n\\\\small\n","\n"), footnote_text,
Hao Zhu23bde3a2018-03-28 16:00:55 -0400293 "\n\\\\end{tablenotes}\n\\\\end{threeparttable}"),
Hao Zhu27c7c852018-03-26 16:18:23 -0400294 out)
295 }
Hao Zhu17814c72018-01-10 11:32:14 -0500296 } else {
Hao Zhu23bde3a2018-03-28 16:00:55 -0400297 if (table_info$booktabs) {
298 out <- sub("\\\\bottomrule",
299 paste0("\\\\bottomrule\n", footnote_text), out)
300 } else {
301 out <- sub(table_info$end_tabular,
302 paste0(footnote_text, "\n\\\\end{", table_info$tabular, "}"),
303 out)
304 }
Hao Zhu17814c72018-01-10 11:32:14 -0500305 }
306
Hao Zhu19c4fa52018-01-09 12:01:14 -0500307 out <- structure(out, format = "latex", class = "knitr_kable")
308 attr(out, "kable_meta") <- table_info
309 return(out)
Hao Zhu19c4fa52018-01-09 12:01:14 -0500310}
Hao Zhucdd7f922018-01-08 11:39:40 -0500311
Hao Zhu17814c72018-01-10 11:32:14 -0500312latex_tfoot_maker <- function(footnote_table, footnote_as_chunk, ncol,
313 threeparttable) {
Hao Zhu19c4fa52018-01-09 12:01:14 -0500314 footnote_types <- names(footnote_table$contents)
315 footnote_text <- c()
Hao Zhu17814c72018-01-10 11:32:14 -0500316 if (threeparttable) {
317 for (i in footnote_types) {
318 footnote_text <- c(footnote_text, latex_tfoot_maker_tpt_(
319 footnote_table$contents[[i]], footnote_table$titles[[i]],
320 footnote_as_chunk, ncol))
321 }
322 } else {
323 for (i in footnote_types) {
324 footnote_text <- c(footnote_text, latex_tfoot_maker_(
325 footnote_table$contents[[i]], footnote_table$titles[[i]],
326 footnote_as_chunk, ncol))
327 }
Hao Zhu19c4fa52018-01-09 12:01:14 -0500328 }
329 footnote_text <- paste0(footnote_text, collapse = "\n")
330 return(footnote_text)
331}
Hao Zhu9f917482018-01-08 18:09:33 -0500332
Hao Zhu17814c72018-01-10 11:32:14 -0500333latex_tfoot_maker_ <- function(ft_contents, ft_title, ft_chunk, ncol) {
Hao Zhu19c4fa52018-01-09 12:01:14 -0500334 footnote_text <- apply(ft_contents, 1, function(x) {
335 if (x[1] == "") {
336 x[2]
337 } else {
338 paste0('\\\\textsuperscript{', x[1], '} ', x[2])
339 }
340 })
341 if (ft_title != "") {
Hao Zhu25efb132018-05-20 22:00:56 -0400342 title_text <- ft_title
Hao Zhu19c4fa52018-01-09 12:01:14 -0500343 footnote_text <- c(title_text, footnote_text)
344 }
345 if (!ft_chunk) {
346 footnote_text <- paste0(
Cillian Berragande662b72020-03-05 16:17:28 +0000347 '\\\\multicolumn{', ncol, '}{l}{\\\\rule{0pt}{1em}', footnote_text, '}\\\\\\\\'
Hao Zhu19c4fa52018-01-09 12:01:14 -0500348 )
349 } else {
350 footnote_text <- paste0(
Cillian Berragande662b72020-03-05 16:17:28 +0000351 '\\\\multicolumn{', ncol, '}{l}{\\\\rule{0pt}{1em}',
Hao Zhu19c4fa52018-01-09 12:01:14 -0500352 paste0(footnote_text, collapse = " "),
353 '}\\\\\\\\'
354 )
355 }
356 return(footnote_text)
Hao Zhucdd7f922018-01-08 11:39:40 -0500357}
Hao Zhu17814c72018-01-10 11:32:14 -0500358
359latex_tfoot_maker_tpt_ <- function(ft_contents, ft_title, ft_chunk, ncol) {
360 footnote_text <- apply(ft_contents, 1, function(x) {
361 if (x[1] == "") {
362 paste0('\\\\item ', x[2])
363 } else {
364 paste0('\\\\item[', x[1], '] ', x[2])
365 }
366 })
367 if (ft_title != "") {
Hao Zhu25efb132018-05-20 22:00:56 -0400368 title_text <- paste0('\\\\item ', ft_title, ' ')
Hao Zhu17814c72018-01-10 11:32:14 -0500369 footnote_text <- c(title_text, footnote_text)
370 }
371 footnote_text <- paste0(footnote_text, collapse = "\n")
372 # if (!ft_chunk) {
373 # footnote_text <- paste0(footnote_text, collapse = "\n")
374 # } else {
375 # footnote_text <- paste0(footnote_text, collapse = " ")
376 # }
377 return(footnote_text)
378}