blob: 5977104ce71ae8b86689104cb6ec7fd0cae01f7c [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
14#' "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,
20 notation = c("alphabet", "number", "symbol"),
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 Zhue10cfd32017-02-21 16:41:14 -050024 notation <- match.arg(notation)
25 if (notation == "symbol") {
26 notation <- paste0(notation, ".", attr(input, "format"))
Hao Zhub1bc0aa2015-11-12 11:23:42 -050027 }
Hao Zhue10cfd32017-02-21 16:41:14 -050028
29 ids.ops <- read.csv(system.file("symbol_index.csv", package = "kableExtra"))
30 ids <- ids.ops[, notation]
Hao Zhudb04e302015-11-15 16:57:38 -050031 ids.intable <- gsub("\\*", "\\\\*", ids)
32
33 #count the number of items in label and intable notation
Hao Zhue10cfd32017-02-21 16:41:14 -050034 count.label <- length(label)
35 count.intablenote <- sum(str_count(input, "\\[note\\]"))
Hao Zhuc5415632017-02-21 17:16:13 -050036 if (count.intablenote != 0 & count.label != count.intablenote) {
Hao Zhudb04e302015-11-15 16:57:38 -050037 warning(paste("You entered", count.label, "labels but you put",
Hao Zhue10cfd32017-02-21 16:41:14 -050038 count.intablenote, "[note] in your table."))
Hao Zhudb04e302015-11-15 16:57:38 -050039 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -050040
Hao Zhu4adea852015-11-16 16:38:34 -050041 export <- input
42
Hao Zhudc4b7142015-11-19 10:37:53 -050043 # Find out if there are any extra in-table notations needed to be corrected
Hao Zhu2203f662015-11-20 11:53:39 -050044 extra.notation <- unique(as.numeric(
Hao Zhudc4b7142015-11-19 10:37:53 -050045 str_extract(
46 str_extract_all(
47 paste0(export, collapse = ""), "\\[note[0-9]{1,2}\\]"
48 )[[1]],
Hao Zhu2203f662015-11-20 11:53:39 -050049 "[0-9]{1,2}")))
Hao Zhudc4b7142015-11-19 10:37:53 -050050
Hao Zhuc5415632017-02-21 17:16:13 -050051 # Pandoc ---------------------------
Hao Zhu4adea852015-11-16 16:38:34 -050052 # Footnote solution for markdown and pandoc. It is not perfect as
53 # markdown doesn't support complex table formats but this solution
54 # should be able to satisfy people who don't want to spend extra
Hao Zhue10cfd32017-02-21 16:41:14 -050055 # time to define their `kable` format.
56 if (!attr(input, "format") %in% c("html", "latex")) {
Hao Zhu4adea852015-11-16 16:38:34 -050057 # In table notation
Hao Zhue10cfd32017-02-21 16:41:14 -050058 if (count.intablenote != 0) {
59 for (i in 1:count.intablenote) {
60 replace_note <- paste0("^", ids.intable[i], "^",
Hao Zhuc5415632017-02-21 17:16:13 -050061 paste0(rep(" ", 4 - ceiling(i/5)), collapse = ""))
Hao Zhue10cfd32017-02-21 16:41:14 -050062
Hao Zhudb04e302015-11-15 16:57:38 -050063 export[which(str_detect(export, "\\[note\\]"))[1]] <-
Hao Zhue10cfd32017-02-21 16:41:14 -050064 sub("\\[note\\]", replace_note,
65 export[which(str_detect(export, "\\[note\\]"))[1]])
Hao Zhudb04e302015-11-15 16:57:38 -050066 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -050067 }
Hao Zhu4adea852015-11-16 16:38:34 -050068 # Fix extra in table notation
Hao Zhuc5415632017-02-21 17:16:13 -050069 for (i in extra.notation) {
Hao Zhu4adea852015-11-16 16:38:34 -050070 export <- gsub(paste0("\\[note", i, "\\]"),
71 paste0("^", ids.intable[i], "^",
Hao Zhuc5415632017-02-21 17:16:13 -050072 paste0(rep(" ", 4 - ceiling(i/5)), collapse = "")),
Hao Zhu4adea852015-11-16 16:38:34 -050073 export)
74 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -050075
Hao Zhuc5415632017-02-21 17:16:13 -050076 export[length(export) + 1] <- ""
77 export[length(export) + 1] <- "__Note:__"
78 export[length(export) + 1] <- paste0(
Hao Zhudb04e302015-11-15 16:57:38 -050079 paste0("^", ids[1:length(label)], "^ ", label), collapse = " "
Hao Zhuc5415632017-02-21 17:16:13 -050080 )
81 }
Hao Zhudb04e302015-11-15 16:57:38 -050082
Hao Zhuc5415632017-02-21 17:16:13 -050083 # LaTeX Tables --------------------------------
84 if (attr(input, "format") == "latex") {
Hao Zhu2203f662015-11-20 11:53:39 -050085 # Clean the entry for labels
Hao Zhuc5415632017-02-21 17:16:13 -050086 label <- escape_latex(label)
87 label <- gsub("\\\\", "\\\\\\\\", label)
Hao Zhu8977a8a2015-11-19 16:52:21 -050088
Hao Zhu4adea852015-11-16 16:38:34 -050089 kable_info <- magic_mirror(input)
Hao Zhuc5415632017-02-21 17:16:13 -050090 if (kable_info$tabular == "longtable") {
91 if (notation != "number") {
92 warning("Notation is set to 'number' and other formats are not supported.")
93 notation <- "number"
Hao Zhudc4b7142015-11-19 10:37:53 -050094 }
95 # If longtable is used, then use page footnote instead of threeparttable
96 # as it makes more sense to see the footnote at the bottom of page if
97 # table is longer than one page.
Hao Zhuc5415632017-02-21 17:16:13 -050098 if (threeparttable == T) {
99 warning("Threeparttable does not support longtable.")
100 threeparttable = F
101 }
Hao Zhu4adea852015-11-16 16:38:34 -0500102
Hao Zhudc4b7142015-11-19 10:37:53 -0500103 # Longtable doesn't support footnote in caption directly.
104 # See http://tex.stackexchange.com/questions/50151/footnotes-in-longtable-captions
Hao Zhuc5415632017-02-21 17:16:13 -0500105
106 count.in.caption.note <- 0
107 if (!is.na(kable_info$caption)) {
108 count.in.caption.note <- str_count(kable_info$caption, "\\[note\\]")
109 }
110 if (count.in.caption.note != 0) {
111 caption.footnote <- paste0("\\\\addtocounter{footnote}{-",
112 count.in.caption.note, "}")
113 for (i in 1:count.in.caption.note) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500114 export <- sub("\\[note\\]", "\\\\protect\\\\footnotemark ", export)
115 caption.footnote <- paste0(
Hao Zhuc5415632017-02-21 17:16:13 -0500116 caption.footnote, "\n\\\\stepcounter{footnote}\\\\footnotetext{",
117 label[i], "}")
Hao Zhudc4b7142015-11-19 10:37:53 -0500118 }
119
Hao Zhuc5415632017-02-21 17:16:13 -0500120 if (str_detect(export, "\\\\toprule")) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500121 export <- sub("\\\\toprule",
122 paste0("\\\\toprule\n", caption.footnote), export)
Hao Zhuc5415632017-02-21 17:16:13 -0500123 } else {
Hao Zhudc4b7142015-11-19 10:37:53 -0500124 export <- sub("\\\\hline",
125 paste0("\\\\hline\n", caption.footnote), export)
126 }
127 }
Hao Zhuc5415632017-02-21 17:16:13 -0500128 for (i in (count.in.caption.note + 1):count.intablenote) {
Hao Zhu4adea852015-11-16 16:38:34 -0500129 export <- sub("\\[note\\]",
Hao Zhudc4b7142015-11-19 10:37:53 -0500130 paste0("\\\\footnote[", i, "]{", label[i], "}"), export)
131 }
Hao Zhuc5415632017-02-21 17:16:13 -0500132 for (i in extra.notation) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500133 export <- gsub(paste0("\\[note", i, "\\]"),
134 paste0("\\\\footnotemark[", i, "]"),
135 export)
Hao Zhudb04e302015-11-15 16:57:38 -0500136 }
Hao Zhuc5415632017-02-21 17:16:13 -0500137 } else {
Hao Zhudb04e302015-11-15 16:57:38 -0500138 # Replace in-table notation with appropriate symbol
Hao Zhuc5415632017-02-21 17:16:13 -0500139 for (i in 1:count.intablenote) {
140 export <- sub("\\[note\\]",
141 paste0("\\\\textsuperscript{", ids.intable[i], "}"),
142 export)
Hao Zhudb04e302015-11-15 16:57:38 -0500143 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500144
Hao Zhudc4b7142015-11-19 10:37:53 -0500145 # Fix extra in table notation
Hao Zhuc5415632017-02-21 17:16:13 -0500146 for (i in extra.notation) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500147 export <- gsub(paste0("\\[note", i, "\\]"),
148 paste0("\\\\textsuperscript{", ids.intable[i], "}"),
149 export)
Hao Zhudb04e302015-11-15 16:57:38 -0500150 }
Hao Zhuc5415632017-02-21 17:16:13 -0500151 if (threeparttable == T) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500152 # generate footer with appropriate symbol
Hao Zhuf7994dd2017-02-27 16:58:42 -0500153 usepackage_latex("threeparttable")
Hao Zhudc4b7142015-11-19 10:37:53 -0500154 footer <- ""
Hao Zhuc5415632017-02-21 17:16:13 -0500155 for (i in 1:count.label) {
Hao Zhudc4b7142015-11-19 10:37:53 -0500156 footer <- paste0(footer,"\\\\item [", ids[i], "] ", label[i], "\n")
157 }
158
Hao Zhuc5415632017-02-21 17:16:13 -0500159 if (grepl("\\\\caption\\{.*?\\}", export)) {
160 export <- sub("\\\\caption\\{",
161 "\\\\begin{threeparttable}\n\\\\caption{",
162 export)
163 } else {
Hao Zhudc4b7142015-11-19 10:37:53 -0500164 export <- sub("\\\\begin\\{tabular\\}",
Hao Zhuc5415632017-02-21 17:16:13 -0500165 "\\\\begin{threeparttable}\n\\\\begin{tabular}",
166 export)
Hao Zhudc4b7142015-11-19 10:37:53 -0500167 }
168 export <- gsub(
169 "\\\\end\\{tabular\\}",
Hao Zhuc5415632017-02-21 17:16:13 -0500170 paste0("\\\\end{tabular}\n\\\\begin{tablenotes}\n\\\\small\n",
171 footer, "\\\\end{tablenotes}\n\\\\end{threeparttable}"),
Hao Zhudc4b7142015-11-19 10:37:53 -0500172 export)
Hao Zhuc5415632017-02-21 17:16:13 -0500173 } else {
174 table.width <- max(nchar(
175 str_replace_all(
176 str_replace_all(kable_info$contents, "\\[note\\]", ""),
177 "\\[note[0-9]{1,2}\\]", ""))) + 2 * (kable_info$ncol - 1)
178 footer <- ""
179 for (i in 1:count.label) {
180 label.wrap <- strwrap(label[i], table.width)
181 footer <- paste0(footer, "\\\\multicolumn{", kable_info$ncol,
182 "}{l}{\\\\textsuperscript{", ids[i], "} ",
183 label.wrap[1], "}\\\\\\\\\n")
184 if (length(label.wrap) > 1) {
185 for (j in 2:length(label.wrap)) {
186 footer <- paste0(footer, "\\\\multicolumn{", kable_info$ncol,
187 "}{l}{", label.wrap[j], "}\\\\\\\\\n")
Hao Zhudc4b7142015-11-19 10:37:53 -0500188 }
189 }
Hao Zhuc5415632017-02-21 17:16:13 -0500190 }
191 export <- gsub("\\\\end\\{tabular\\}",
192 paste0(footer, "\\\\end{tabular}"),
193 export)
Hao Zhudc4b7142015-11-19 10:37:53 -0500194 }
Hao Zhudb04e302015-11-15 16:57:38 -0500195 }
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500196 }
Hao Zhuc5415632017-02-21 17:16:13 -0500197
198 # HTML Tables -------------------
199 if (attr(input, "format") == "html") {
Hao Zhu2203f662015-11-20 11:53:39 -0500200 # Clean the entry for labels
Hao Zhuc5415632017-02-21 17:16:13 -0500201 label <- escape_html(label)
Hao Zhudc4b7142015-11-19 10:37:53 -0500202
Hao Zhu2203f662015-11-20 11:53:39 -0500203 # Replace in-table notation with appropriate symbol
Hao Zhuc5415632017-02-21 17:16:13 -0500204 for (i in 1:count.intablenote) {
205 export <- sub("\\[note\\]",
206 paste0("<sup>", ids.intable[i], "</sup>"),
207 export)
Hao Zhu2203f662015-11-20 11:53:39 -0500208 }
209
210 # Fix extra in table notation
Hao Zhuc5415632017-02-21 17:16:13 -0500211 for (i in extra.notation) {
Hao Zhu2203f662015-11-20 11:53:39 -0500212 export <- gsub(paste0("\\[note", i, "\\]"),
213 paste0("<sup>", ids.intable[i], "</sup>"),
214 export)
215 }
216
217 # Build footer
218 footer <- "<tfoot>\n"
Hao Zhuc5415632017-02-21 17:16:13 -0500219 for (i in 1:count.label) {
Hao Zhu2203f662015-11-20 11:53:39 -0500220 footer <- paste0(footer, "<tr>\n<td style = 'padding: 0; border:0;' ",
221 "colspan='100%'><sup>", ids[i],"</sup> ",
222 label[i], "</td>\n</tr>\n")
223 }
224 footer <- paste0(footer, "</tfoot>\n")
225
226 # Paste footer to the table
227 export[1] <- gsub("</tbody>\n", paste0("</tbody>\n", footer), export[1])
Hao Zhub1bc0aa2015-11-12 11:23:42 -0500228 }
229 return(export)
230}