blob: a6524a5b9b021ce8ef26f4432272b2b60edcdfe1 [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
16#' \href{https://www.ctan.org/pkg/threeparttable}{threeparttable} scheme should be used.
Hao Zhub1bc0aa2015-11-12 11:23:42 -050017#'
18#' @export
Hao Zhue10cfd32017-02-21 16:41:14 -050019add_footnote <- function(input, label = NULL,
Hao Zhu9b45a182017-02-27 18:17:46 -050020 notation = "alphabet",
Hao Zhu2203f662015-11-20 11:53:39 -050021 threeparttable = FALSE) {
Hao Zhue10cfd32017-02-21 16:41:14 -050022 if (is.null(label)) return(input)
Hao Zhu8977a8a2015-11-19 16:52:21 -050023
Hao Zhu9b45a182017-02-27 18:17:46 -050024 if (notation == "alphabet") {
25 notation <- getOption("kable_footnote_notation", "alphabet")
26 }
27 if (!threeparttable) {
28 threeparttable <- getOption("kable_footnote_threeparttable", FALSE)
29 }
30
31 notation <- match.arg(notation, c("alphabet", "number", "symbol"))
Hao Zhue10cfd32017-02-21 16:41:14 -050032 if (notation == "symbol") {
33 notation <- paste0(notation, ".", attr(input, "format"))
Hao Zhub1bc0aa2015-11-12 11:23:42 -050034 }
Hao Zhue10cfd32017-02-21 16:41:14 -050035
Hao Zhu9b45a182017-02-27 18:17:46 -050036 table_info <- NULL
37
Hao Zhue10cfd32017-02-21 16:41:14 -050038 ids.ops <- read.csv(system.file("symbol_index.csv", package = "kableExtra"))
39 ids <- ids.ops[, notation]
Hao Zhudb04e302015-11-15 16:57:38 -050040 ids.intable <- gsub("\\*", "\\\\*", ids)
41
42 #count the number of items in label and intable notation
Hao Zhue10cfd32017-02-21 16:41:14 -050043 count.label <- length(label)
44 count.intablenote <- sum(str_count(input, "\\[note\\]"))
Hao Zhuc5415632017-02-21 17:16:13 -050045 if (count.intablenote != 0 & count.label != count.intablenote) {
Hao Zhudb04e302015-11-15 16:57:38 -050046 warning(paste("You entered", count.label, "labels but you put",
Hao Zhue10cfd32017-02-21 16:41:14 -050047 count.intablenote, "[note] in your table."))
Hao Zhudb04e302015-11-15 16:57:38 -050048 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -050049
Hao Zhu4adea852015-11-16 16:38:34 -050050 export <- input
51
Hao Zhudc4b7142015-11-19 10:37:53 -050052 # Find out if there are any extra in-table notations needed to be corrected
Hao Zhu2203f662015-11-20 11:53:39 -050053 extra.notation <- unique(as.numeric(
Hao Zhudc4b7142015-11-19 10:37:53 -050054 str_extract(
55 str_extract_all(
56 paste0(export, collapse = ""), "\\[note[0-9]{1,2}\\]"
57 )[[1]],
Hao Zhu2203f662015-11-20 11:53:39 -050058 "[0-9]{1,2}")))
Hao Zhudc4b7142015-11-19 10:37:53 -050059
Hao Zhuc5415632017-02-21 17:16:13 -050060 # Pandoc ---------------------------
Hao Zhu4adea852015-11-16 16:38:34 -050061 # Footnote solution for markdown and pandoc. It is not perfect as
62 # markdown doesn't support complex table formats but this solution
63 # should be able to satisfy people who don't want to spend extra
Hao Zhue10cfd32017-02-21 16:41:14 -050064 # time to define their `kable` format.
65 if (!attr(input, "format") %in% c("html", "latex")) {
Hao Zhu4adea852015-11-16 16:38:34 -050066 # In table notation
Hao Zhue10cfd32017-02-21 16:41:14 -050067 if (count.intablenote != 0) {
68 for (i in 1:count.intablenote) {
69 replace_note <- paste0("^", ids.intable[i], "^",
Hao Zhuc5415632017-02-21 17:16:13 -050070 paste0(rep(" ", 4 - ceiling(i/5)), collapse = ""))
Hao Zhue10cfd32017-02-21 16:41:14 -050071
Hao Zhudb04e302015-11-15 16:57:38 -050072 export[which(str_detect(export, "\\[note\\]"))[1]] <-
Hao Zhue10cfd32017-02-21 16:41:14 -050073 sub("\\[note\\]", replace_note,
74 export[which(str_detect(export, "\\[note\\]"))[1]])
Hao Zhudb04e302015-11-15 16:57:38 -050075 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -050076 }
Hao Zhu4adea852015-11-16 16:38:34 -050077 # Fix extra in table notation
Hao Zhuc5415632017-02-21 17:16:13 -050078 for (i in extra.notation) {
Hao Zhu4adea852015-11-16 16:38:34 -050079 export <- gsub(paste0("\\[note", i, "\\]"),
80 paste0("^", ids.intable[i], "^",
Hao Zhuc5415632017-02-21 17:16:13 -050081 paste0(rep(" ", 4 - ceiling(i/5)), collapse = "")),
Hao Zhu4adea852015-11-16 16:38:34 -050082 export)
83 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -050084
Hao Zhuc5415632017-02-21 17:16:13 -050085 export[length(export) + 1] <- ""
86 export[length(export) + 1] <- "__Note:__"
87 export[length(export) + 1] <- paste0(
Hao Zhudb04e302015-11-15 16:57:38 -050088 paste0("^", ids[1:length(label)], "^ ", label), collapse = " "
Hao Zhuc5415632017-02-21 17:16:13 -050089 )
90 }
Hao Zhudb04e302015-11-15 16:57:38 -050091
Hao Zhuc5415632017-02-21 17:16:13 -050092 # LaTeX Tables --------------------------------
93 if (attr(input, "format") == "latex") {
Hao Zhu2203f662015-11-20 11:53:39 -050094 # Clean the entry for labels
Hao Zhuc5415632017-02-21 17:16:13 -050095 label <- escape_latex(label)
96 label <- gsub("\\\\", "\\\\\\\\", label)
Hao Zhu8977a8a2015-11-19 16:52:21 -050097
Hao Zhu9b45a182017-02-27 18:17:46 -050098 table_info <- magic_mirror(input)
99 if (table_info$tabular == "longtable") {
Hao Zhuc5415632017-02-21 17:16:13 -0500100 if (notation != "number") {
101 warning("Notation is set to 'number' and other formats are not supported.")
102 notation <- "number"
Hao Zhudc4b7142015-11-19 10:37:53 -0500103 }
104 # If longtable is used, then use page footnote instead of threeparttable
105 # as it makes more sense to see the footnote at the bottom of page if
106 # table is longer than one page.
Hao Zhuc5415632017-02-21 17:16:13 -0500107 if (threeparttable == T) {
108 warning("Threeparttable does not support longtable.")
109 threeparttable = F
110 }
Hao Zhu4adea852015-11-16 16:38:34 -0500111
Hao Zhudc4b7142015-11-19 10:37:53 -0500112 # Longtable doesn't support footnote in caption directly.
113 # See http://tex.stackexchange.com/questions/50151/footnotes-in-longtable-captions
Hao Zhuc5415632017-02-21 17:16:13 -0500114
115 count.in.caption.note <- 0
Hao Zhu9b45a182017-02-27 18:17:46 -0500116 if (!is.na(table_info$caption)) {
117 count.in.caption.note <- str_count(table_info$caption, "\\[note\\]")
Hao Zhuc5415632017-02-21 17:16:13 -0500118 }
119 if (count.in.caption.note != 0) {
120 caption.footnote <- paste0("\\\\addtocounter{footnote}{-",
121 count.in.caption.note, "}")
122 for (i in 1:count.in.caption.note) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500123 export <- sub("\\[note\\]", "\\\\protect\\\\footnotemark ", export)
124 caption.footnote <- paste0(
Hao Zhuc5415632017-02-21 17:16:13 -0500125 caption.footnote, "\n\\\\stepcounter{footnote}\\\\footnotetext{",
126 label[i], "}")
Hao Zhudc4b7142015-11-19 10:37:53 -0500127 }
128
Hao Zhuc5415632017-02-21 17:16:13 -0500129 if (str_detect(export, "\\\\toprule")) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500130 export <- sub("\\\\toprule",
131 paste0("\\\\toprule\n", caption.footnote), export)
Hao Zhuc5415632017-02-21 17:16:13 -0500132 } else {
Hao Zhudc4b7142015-11-19 10:37:53 -0500133 export <- sub("\\\\hline",
134 paste0("\\\\hline\n", caption.footnote), export)
135 }
136 }
Hao Zhuc5415632017-02-21 17:16:13 -0500137 for (i in (count.in.caption.note + 1):count.intablenote) {
Hao Zhu4adea852015-11-16 16:38:34 -0500138 export <- sub("\\[note\\]",
Hao Zhudc4b7142015-11-19 10:37:53 -0500139 paste0("\\\\footnote[", i, "]{", label[i], "}"), export)
140 }
Hao Zhuc5415632017-02-21 17:16:13 -0500141 for (i in extra.notation) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500142 export <- gsub(paste0("\\[note", i, "\\]"),
143 paste0("\\\\footnotemark[", i, "]"),
144 export)
Hao Zhudb04e302015-11-15 16:57:38 -0500145 }
Hao Zhuc5415632017-02-21 17:16:13 -0500146 } else {
Hao Zhudb04e302015-11-15 16:57:38 -0500147 # Replace in-table notation with appropriate symbol
Hao Zhuc5415632017-02-21 17:16:13 -0500148 for (i in 1:count.intablenote) {
149 export <- sub("\\[note\\]",
150 paste0("\\\\textsuperscript{", ids.intable[i], "}"),
151 export)
Hao Zhudb04e302015-11-15 16:57:38 -0500152 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500153
Hao Zhudc4b7142015-11-19 10:37:53 -0500154 # Fix extra in table notation
Hao Zhuc5415632017-02-21 17:16:13 -0500155 for (i in extra.notation) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500156 export <- gsub(paste0("\\[note", i, "\\]"),
157 paste0("\\\\textsuperscript{", ids.intable[i], "}"),
158 export)
Hao Zhudb04e302015-11-15 16:57:38 -0500159 }
Hao Zhuc5415632017-02-21 17:16:13 -0500160 if (threeparttable == T) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500161 # generate footer with appropriate symbol
Hao Zhuf7994dd2017-02-27 16:58:42 -0500162 usepackage_latex("threeparttable")
Hao Zhudc4b7142015-11-19 10:37:53 -0500163 footer <- ""
Hao Zhuc5415632017-02-21 17:16:13 -0500164 for (i in 1:count.label) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500165 footer <- paste0(footer,"\\\\item [", ids[i], "] ", label[i], "\n")
166 }
167
Hao Zhuc5415632017-02-21 17:16:13 -0500168 if (grepl("\\\\caption\\{.*?\\}", export)) {
169 export <- sub("\\\\caption\\{",
170 "\\\\begin{threeparttable}\n\\\\caption{",
171 export)
172 } else {
Hao Zhudc4b7142015-11-19 10:37:53 -0500173 export <- sub("\\\\begin\\{tabular\\}",
Hao Zhuc5415632017-02-21 17:16:13 -0500174 "\\\\begin{threeparttable}\n\\\\begin{tabular}",
175 export)
Hao Zhudc4b7142015-11-19 10:37:53 -0500176 }
177 export <- gsub(
178 "\\\\end\\{tabular\\}",
Hao Zhuc5415632017-02-21 17:16:13 -0500179 paste0("\\\\end{tabular}\n\\\\begin{tablenotes}\n\\\\small\n",
180 footer, "\\\\end{tablenotes}\n\\\\end{threeparttable}"),
Hao Zhudc4b7142015-11-19 10:37:53 -0500181 export)
Hao Zhuc5415632017-02-21 17:16:13 -0500182 } else {
183 table.width <- max(nchar(
184 str_replace_all(
Hao Zhu9b45a182017-02-27 18:17:46 -0500185 str_replace_all(table_info$contents, "\\[note\\]", ""),
186 "\\[note[0-9]{1,2}\\]", ""))) + 2 * (table_info$ncol - 1)
Hao Zhuc5415632017-02-21 17:16:13 -0500187 footer <- ""
188 for (i in 1:count.label) {
189 label.wrap <- strwrap(label[i], table.width)
Hao Zhu9b45a182017-02-27 18:17:46 -0500190 footer <- paste0(footer, "\\\\multicolumn{", table_info$ncol,
Hao Zhuc5415632017-02-21 17:16:13 -0500191 "}{l}{\\\\textsuperscript{", ids[i], "} ",
192 label.wrap[1], "}\\\\\\\\\n")
193 if (length(label.wrap) > 1) {
194 for (j in 2:length(label.wrap)) {
Hao Zhu9b45a182017-02-27 18:17:46 -0500195 footer <- paste0(footer, "\\\\multicolumn{", table_info$ncol,
Hao Zhuc5415632017-02-21 17:16:13 -0500196 "}{l}{", label.wrap[j], "}\\\\\\\\\n")
Hao Zhudc4b7142015-11-19 10:37:53 -0500197 }
198 }
Hao Zhuc5415632017-02-21 17:16:13 -0500199 }
200 export <- gsub("\\\\end\\{tabular\\}",
201 paste0(footer, "\\\\end{tabular}"),
202 export)
Hao Zhudc4b7142015-11-19 10:37:53 -0500203 }
Hao Zhudb04e302015-11-15 16:57:38 -0500204 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500205 }
Hao Zhuc5415632017-02-21 17:16:13 -0500206
207 # HTML Tables -------------------
208 if (attr(input, "format") == "html") {
Hao Zhu2203f662015-11-20 11:53:39 -0500209 # Clean the entry for labels
Hao Zhu9b45a182017-02-27 18:17:46 -0500210 table_info <- magic_mirror(input)
Hao Zhuc5415632017-02-21 17:16:13 -0500211 label <- escape_html(label)
Hao Zhu2203f662015-11-20 11:53:39 -0500212 # Replace in-table notation with appropriate symbol
Hao Zhuc5415632017-02-21 17:16:13 -0500213 for (i in 1:count.intablenote) {
214 export <- sub("\\[note\\]",
215 paste0("<sup>", ids.intable[i], "</sup>"),
216 export)
Hao Zhu2203f662015-11-20 11:53:39 -0500217 }
218
219 # Fix extra in table notation
Hao Zhuc5415632017-02-21 17:16:13 -0500220 for (i in extra.notation) {
Hao Zhu2203f662015-11-20 11:53:39 -0500221 export <- gsub(paste0("\\[note", i, "\\]"),
222 paste0("<sup>", ids.intable[i], "</sup>"),
223 export)
224 }
225
226 # Build footer
227 footer <- "<tfoot>\n"
Hao Zhuc5415632017-02-21 17:16:13 -0500228 for (i in 1:count.label) {
Hao Zhu2203f662015-11-20 11:53:39 -0500229 footer <- paste0(footer, "<tr>\n<td style = 'padding: 0; border:0;' ",
230 "colspan='100%'><sup>", ids[i],"</sup> ",
231 label[i], "</td>\n</tr>\n")
232 }
233 footer <- paste0(footer, "</tfoot>\n")
234
235 # Paste footer to the table
236 export[1] <- gsub("</tbody>\n", paste0("</tbody>\n", footer), export[1])
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500237 }
Hao Zhu9b45a182017-02-27 18:17:46 -0500238 attr(export, "original_kable_meta") <- table_info
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500239 return(export)
240}