blob: ce0a4a981949b191184208b400e1d3df62ad2aaf [file] [log] [blame]
Hao Zhub1bc0aa2015-11-12 11:23:42 -05001#' Add footnote
2#'
3#' @description Add footnote to your favorite kable output. So far this function
4#' only works when you define \code{format} in your kable function or in the
5#' global knitr option \code{knitr.table.format}. In latex, we are using the
6#' \code{threeparttable} package so you need to import this package in your
7#' \code{YAML} header.
8#'
9#' @param input The direct output of your \code{kable} function or your last
10#' \code{kableExtra} function.
11#' @param label A vector of footnotes you want to add. You don't need to add
12#' notations in your notes.
13#' @param notation You can select the format of your footnote notation from
Hao Zhu6a076462017-03-01 12:59:01 -050014#' `number`, `alphabet` and `symbol`.
Hao Zhuf7994dd2017-02-27 16:58:42 -050015#' @param threeparttable Boolean value indicating if a
Hao Zhu78e61222017-05-24 20:53:35 -040016#' \href{https://www.ctan.org/pkg/threeparttable}{threeparttable} scheme should
17#' be used.
Hao Zhu245931c2017-09-01 22:43:56 -040018#' @param escape Logical value controlling if the label needs to be escaped.
19#' Default is TRUE.
Hao Zhu78e61222017-05-24 20:53:35 -040020#'
21#' @examples x <- knitr::kable(head(mtcars), "html")
22#' add_footnote(x, c("footnote 1", "footnote 2"), notation = "symbol")
Hao Zhub1bc0aa2015-11-12 11:23:42 -050023#'
24#' @export
Hao Zhue10cfd32017-02-21 16:41:14 -050025add_footnote <- function(input, label = NULL,
Hao Zhu9b45a182017-02-27 18:17:46 -050026 notation = "alphabet",
Hao Zhu245931c2017-09-01 22:43:56 -040027 threeparttable = FALSE,
28 escape = TRUE) {
Hao Zhue10cfd32017-02-21 16:41:14 -050029 if (is.null(label)) return(input)
Hao Zhu8977a8a2015-11-19 16:52:21 -050030
Hao Zhu9b45a182017-02-27 18:17:46 -050031 if (notation == "alphabet") {
32 notation <- getOption("kable_footnote_notation", "alphabet")
33 }
34 if (!threeparttable) {
35 threeparttable <- getOption("kable_footnote_threeparttable", FALSE)
36 }
37
38 notation <- match.arg(notation, c("alphabet", "number", "symbol"))
Hao Zhue10cfd32017-02-21 16:41:14 -050039 if (notation == "symbol") {
40 notation <- paste0(notation, ".", attr(input, "format"))
Hao Zhub1bc0aa2015-11-12 11:23:42 -050041 }
Hao Zhue10cfd32017-02-21 16:41:14 -050042
Hao Zhu9b45a182017-02-27 18:17:46 -050043 table_info <- NULL
44
Hao Zhue10cfd32017-02-21 16:41:14 -050045 ids.ops <- read.csv(system.file("symbol_index.csv", package = "kableExtra"))
46 ids <- ids.ops[, notation]
Hao Zhudb04e302015-11-15 16:57:38 -050047 ids.intable <- gsub("\\*", "\\\\*", ids)
48
49 #count the number of items in label and intable notation
Hao Zhue10cfd32017-02-21 16:41:14 -050050 count.label <- length(label)
51 count.intablenote <- sum(str_count(input, "\\[note\\]"))
Hao Zhuc5415632017-02-21 17:16:13 -050052 if (count.intablenote != 0 & count.label != count.intablenote) {
Hao Zhudb04e302015-11-15 16:57:38 -050053 warning(paste("You entered", count.label, "labels but you put",
Hao Zhue10cfd32017-02-21 16:41:14 -050054 count.intablenote, "[note] in your table."))
Hao Zhudb04e302015-11-15 16:57:38 -050055 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -050056
Hao Zhu4adea852015-11-16 16:38:34 -050057 export <- input
58
Hao Zhudc4b7142015-11-19 10:37:53 -050059 # Find out if there are any extra in-table notations needed to be corrected
Hao Zhu2203f662015-11-20 11:53:39 -050060 extra.notation <- unique(as.numeric(
Hao Zhudc4b7142015-11-19 10:37:53 -050061 str_extract(
62 str_extract_all(
63 paste0(export, collapse = ""), "\\[note[0-9]{1,2}\\]"
64 )[[1]],
Hao Zhu2203f662015-11-20 11:53:39 -050065 "[0-9]{1,2}")))
Hao Zhudc4b7142015-11-19 10:37:53 -050066
Hao Zhuc5415632017-02-21 17:16:13 -050067 # Pandoc ---------------------------
Hao Zhu4adea852015-11-16 16:38:34 -050068 # Footnote solution for markdown and pandoc. It is not perfect as
69 # markdown doesn't support complex table formats but this solution
70 # should be able to satisfy people who don't want to spend extra
Hao Zhue10cfd32017-02-21 16:41:14 -050071 # time to define their `kable` format.
72 if (!attr(input, "format") %in% c("html", "latex")) {
Hao Zhu4adea852015-11-16 16:38:34 -050073 # In table notation
Hao Zhue10cfd32017-02-21 16:41:14 -050074 if (count.intablenote != 0) {
75 for (i in 1:count.intablenote) {
76 replace_note <- paste0("^", ids.intable[i], "^",
Hao Zhuc5415632017-02-21 17:16:13 -050077 paste0(rep(" ", 4 - ceiling(i/5)), collapse = ""))
Hao Zhue10cfd32017-02-21 16:41:14 -050078
Hao Zhudb04e302015-11-15 16:57:38 -050079 export[which(str_detect(export, "\\[note\\]"))[1]] <-
Hao Zhue10cfd32017-02-21 16:41:14 -050080 sub("\\[note\\]", replace_note,
81 export[which(str_detect(export, "\\[note\\]"))[1]])
Hao Zhudb04e302015-11-15 16:57:38 -050082 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -050083 }
Hao Zhu4adea852015-11-16 16:38:34 -050084 # Fix extra in table notation
Hao Zhuc5415632017-02-21 17:16:13 -050085 for (i in extra.notation) {
Hao Zhu4adea852015-11-16 16:38:34 -050086 export <- gsub(paste0("\\[note", i, "\\]"),
87 paste0("^", ids.intable[i], "^",
Hao Zhuc5415632017-02-21 17:16:13 -050088 paste0(rep(" ", 4 - ceiling(i/5)), collapse = "")),
Hao Zhu4adea852015-11-16 16:38:34 -050089 export)
90 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -050091
Hao Zhuc5415632017-02-21 17:16:13 -050092 export[length(export) + 1] <- ""
93 export[length(export) + 1] <- "__Note:__"
94 export[length(export) + 1] <- paste0(
Hao Zhudb04e302015-11-15 16:57:38 -050095 paste0("^", ids[1:length(label)], "^ ", label), collapse = " "
Hao Zhuc5415632017-02-21 17:16:13 -050096 )
97 }
Hao Zhudb04e302015-11-15 16:57:38 -050098
Hao Zhuc5415632017-02-21 17:16:13 -050099 # LaTeX Tables --------------------------------
100 if (attr(input, "format") == "latex") {
Hao Zhu2203f662015-11-20 11:53:39 -0500101 # Clean the entry for labels
Hao Zhu245931c2017-09-01 22:43:56 -0400102 if (escape) {
103 label <- escape_latex(label)
104 }
Hao Zhuc5415632017-02-21 17:16:13 -0500105 label <- gsub("\\\\", "\\\\\\\\", label)
Hao Zhu8977a8a2015-11-19 16:52:21 -0500106
Hao Zhud2c0f732017-08-26 10:40:14 -0400107 export <- enc2utf8(export)
Hao Zhu9b45a182017-02-27 18:17:46 -0500108 table_info <- magic_mirror(input)
109 if (table_info$tabular == "longtable") {
Hao Zhuc5415632017-02-21 17:16:13 -0500110 if (notation != "number") {
111 warning("Notation is set to 'number' and other formats are not supported.")
112 notation <- "number"
Hao Zhudc4b7142015-11-19 10:37:53 -0500113 }
114 # If longtable is used, then use page footnote instead of threeparttable
115 # as it makes more sense to see the footnote at the bottom of page if
116 # table is longer than one page.
Hao Zhuc5415632017-02-21 17:16:13 -0500117 if (threeparttable == T) {
118 warning("Threeparttable does not support longtable.")
119 threeparttable = F
120 }
Hao Zhu4adea852015-11-16 16:38:34 -0500121
Hao Zhudc4b7142015-11-19 10:37:53 -0500122 # Longtable doesn't support footnote in caption directly.
123 # See http://tex.stackexchange.com/questions/50151/footnotes-in-longtable-captions
Hao Zhuc5415632017-02-21 17:16:13 -0500124
125 count.in.caption.note <- 0
Hao Zhu9b45a182017-02-27 18:17:46 -0500126 if (!is.na(table_info$caption)) {
127 count.in.caption.note <- str_count(table_info$caption, "\\[note\\]")
Hao Zhuc5415632017-02-21 17:16:13 -0500128 }
129 if (count.in.caption.note != 0) {
130 caption.footnote <- paste0("\\\\addtocounter{footnote}{-",
131 count.in.caption.note, "}")
132 for (i in 1:count.in.caption.note) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500133 export <- sub("\\[note\\]", "\\\\protect\\\\footnotemark ", export)
134 caption.footnote <- paste0(
Hao Zhuc5415632017-02-21 17:16:13 -0500135 caption.footnote, "\n\\\\stepcounter{footnote}\\\\footnotetext{",
136 label[i], "}")
Hao Zhudc4b7142015-11-19 10:37:53 -0500137 }
138
Hao Zhuc5415632017-02-21 17:16:13 -0500139 if (str_detect(export, "\\\\toprule")) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500140 export <- sub("\\\\toprule",
141 paste0("\\\\toprule\n", caption.footnote), export)
Hao Zhuc5415632017-02-21 17:16:13 -0500142 } else {
Hao Zhudc4b7142015-11-19 10:37:53 -0500143 export <- sub("\\\\hline",
144 paste0("\\\\hline\n", caption.footnote), export)
145 }
146 }
Hao Zhuc5415632017-02-21 17:16:13 -0500147 for (i in (count.in.caption.note + 1):count.intablenote) {
Hao Zhu4adea852015-11-16 16:38:34 -0500148 export <- sub("\\[note\\]",
Hao Zhudc4b7142015-11-19 10:37:53 -0500149 paste0("\\\\footnote[", i, "]{", label[i], "}"), export)
150 }
Hao Zhuc5415632017-02-21 17:16:13 -0500151 for (i in extra.notation) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500152 export <- gsub(paste0("\\[note", i, "\\]"),
153 paste0("\\\\footnotemark[", i, "]"),
154 export)
Hao Zhudb04e302015-11-15 16:57:38 -0500155 }
Hao Zhuc5415632017-02-21 17:16:13 -0500156 } else {
Hao Zhudb04e302015-11-15 16:57:38 -0500157 # Replace in-table notation with appropriate symbol
Hao Zhuc5415632017-02-21 17:16:13 -0500158 for (i in 1:count.intablenote) {
159 export <- sub("\\[note\\]",
160 paste0("\\\\textsuperscript{", ids.intable[i], "}"),
161 export)
Hao Zhudb04e302015-11-15 16:57:38 -0500162 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500163
Hao Zhudc4b7142015-11-19 10:37:53 -0500164 # Fix extra in table notation
Hao Zhuc5415632017-02-21 17:16:13 -0500165 for (i in extra.notation) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500166 export <- gsub(paste0("\\[note", i, "\\]"),
167 paste0("\\\\textsuperscript{", ids.intable[i], "}"),
168 export)
Hao Zhudb04e302015-11-15 16:57:38 -0500169 }
Hao Zhuc5415632017-02-21 17:16:13 -0500170 if (threeparttable == T) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500171 # generate footer with appropriate symbol
Hao Zhuf7994dd2017-02-27 16:58:42 -0500172 usepackage_latex("threeparttable")
Hao Zhudc4b7142015-11-19 10:37:53 -0500173 footer <- ""
Hao Zhuc5415632017-02-21 17:16:13 -0500174 for (i in 1:count.label) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500175 footer <- paste0(footer,"\\\\item [", ids[i], "] ", label[i], "\n")
176 }
177
Hao Zhuc5415632017-02-21 17:16:13 -0500178 if (grepl("\\\\caption\\{.*?\\}", export)) {
179 export <- sub("\\\\caption\\{",
180 "\\\\begin{threeparttable}\n\\\\caption{",
181 export)
182 } else {
Hao Zhu245931c2017-09-01 22:43:56 -0400183 export <- sub(paste0("\\\\begin\\{", table_info$tabular, "\\}"),
184 paste0("\\\\begin{threeparttable}\n\\\\begin{",
185 table_info$tabular, "}"),
Hao Zhuc5415632017-02-21 17:16:13 -0500186 export)
Hao Zhudc4b7142015-11-19 10:37:53 -0500187 }
188 export <- gsub(
189 "\\\\end\\{tabular\\}",
Hao Zhuc5415632017-02-21 17:16:13 -0500190 paste0("\\\\end{tabular}\n\\\\begin{tablenotes}\n\\\\small\n",
191 footer, "\\\\end{tablenotes}\n\\\\end{threeparttable}"),
Hao Zhudc4b7142015-11-19 10:37:53 -0500192 export)
Hao Zhuc5415632017-02-21 17:16:13 -0500193 } else {
194 table.width <- max(nchar(
195 str_replace_all(
Hao Zhu9b45a182017-02-27 18:17:46 -0500196 str_replace_all(table_info$contents, "\\[note\\]", ""),
197 "\\[note[0-9]{1,2}\\]", ""))) + 2 * (table_info$ncol - 1)
Hao Zhuc5415632017-02-21 17:16:13 -0500198 footer <- ""
199 for (i in 1:count.label) {
200 label.wrap <- strwrap(label[i], table.width)
Hao Zhu9b45a182017-02-27 18:17:46 -0500201 footer <- paste0(footer, "\\\\multicolumn{", table_info$ncol,
Hao Zhuc5415632017-02-21 17:16:13 -0500202 "}{l}{\\\\textsuperscript{", ids[i], "} ",
203 label.wrap[1], "}\\\\\\\\\n")
204 if (length(label.wrap) > 1) {
205 for (j in 2:length(label.wrap)) {
Hao Zhu9b45a182017-02-27 18:17:46 -0500206 footer <- paste0(footer, "\\\\multicolumn{", table_info$ncol,
Hao Zhuc5415632017-02-21 17:16:13 -0500207 "}{l}{", label.wrap[j], "}\\\\\\\\\n")
Hao Zhudc4b7142015-11-19 10:37:53 -0500208 }
209 }
Hao Zhuc5415632017-02-21 17:16:13 -0500210 }
211 export <- gsub("\\\\end\\{tabular\\}",
212 paste0(footer, "\\\\end{tabular}"),
213 export)
Hao Zhudc4b7142015-11-19 10:37:53 -0500214 }
Hao Zhudb04e302015-11-15 16:57:38 -0500215 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500216 }
Hao Zhuc5415632017-02-21 17:16:13 -0500217
218 # HTML Tables -------------------
219 if (attr(input, "format") == "html") {
Hao Zhu2203f662015-11-20 11:53:39 -0500220 # Clean the entry for labels
Hao Zhu9b45a182017-02-27 18:17:46 -0500221 table_info <- magic_mirror(input)
Hao Zhu245931c2017-09-01 22:43:56 -0400222 if (escape) {
223 label <- escape_html(label)
224 }
Hao Zhu2203f662015-11-20 11:53:39 -0500225 # Replace in-table notation with appropriate symbol
Hao Zhuc5415632017-02-21 17:16:13 -0500226 for (i in 1:count.intablenote) {
227 export <- sub("\\[note\\]",
228 paste0("<sup>", ids.intable[i], "</sup>"),
229 export)
Hao Zhu2203f662015-11-20 11:53:39 -0500230 }
231
232 # Fix extra in table notation
Hao Zhuc5415632017-02-21 17:16:13 -0500233 for (i in extra.notation) {
Hao Zhu2203f662015-11-20 11:53:39 -0500234 export <- gsub(paste0("\\[note", i, "\\]"),
235 paste0("<sup>", ids.intable[i], "</sup>"),
236 export)
237 }
238
239 # Build footer
240 footer <- "<tfoot>\n"
Hao Zhuc5415632017-02-21 17:16:13 -0500241 for (i in 1:count.label) {
Hao Zhu2203f662015-11-20 11:53:39 -0500242 footer <- paste0(footer, "<tr>\n<td style = 'padding: 0; border:0;' ",
243 "colspan='100%'><sup>", ids[i],"</sup> ",
244 label[i], "</td>\n</tr>\n")
245 }
246 footer <- paste0(footer, "</tfoot>\n")
247
248 # Paste footer to the table
249 export[1] <- gsub("</tbody>\n", paste0("</tbody>\n", footer), export[1])
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500250 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400251 attr(export, "kable_meta") <- table_info
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500252 return(export)
253}