Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 1 | #' Add footnote (new) |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 2 | #' |
Hao Zhu | e0782ab | 2018-01-09 13:24:13 -0500 | [diff] [blame] | 3 | #' @description `footnote` provides a more flexible way to add footnote. You |
| 4 | #' can add mutiple sets of footnote using differeny notation system. It is |
| 5 | #' 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 Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 23 | #' @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ães | f17fa46 | 2019-03-05 12:55:21 +0900 | [diff] [blame] | 27 | #' @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 Zhu | 72917f9 | 2019-03-15 18:41:42 -0400 | [diff] [blame^] | 29 | #' and table content with small font in footnotes). |
Hao Zhu | e0782ab | 2018-01-09 13:24:13 -0500 | [diff] [blame] | 30 | #' @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 Zhu | 25efb13 | 2018-05-20 22:00:56 -0400 | [diff] [blame] | 35 | #' @param title_format Choose from "italic"(default), "bold" and "underline". |
| 36 | #' Multiple options are possible. |
Hao Zhu | 149faed | 2018-10-23 16:36:22 -0400 | [diff] [blame] | 37 | #' @param symbol_manual User can manually supply a vector of either html or |
| 38 | #' latex symbols. For example, `symbol_manual = c('*', '\\\\dag', '\\\\ddag')`.` |
Hao Zhu | 465fc65 | 2018-05-20 20:02:36 -0400 | [diff] [blame] | 39 | #' |
Hao Zhu | b1e2e3d | 2018-01-09 13:31:42 -0500 | [diff] [blame] | 40 | #' @examples dt <- mtcars[1:5, 1:5] |
Hao Zhu | 593f57e | 2018-01-09 13:30:01 -0500 | [diff] [blame] | 41 | #' footnote(knitr::kable(dt, "html"), alphabet = c("Note a", "Note b")) |
| 42 | #' |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 43 | #' @export |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 44 | footnote <- function(kable_input, |
Hao Zhu | 1ac13ad | 2018-01-08 16:12:24 -0500 | [diff] [blame] | 45 | general = NULL, |
| 46 | number = NULL, |
| 47 | alphabet = NULL, |
| 48 | symbol = NULL, |
| 49 | footnote_order = c("general", "number", |
| 50 | "alphabet", "symbol"), |
| 51 | footnote_as_chunk = FALSE, |
Hao Zhu | e0782ab | 2018-01-09 13:24:13 -0500 | [diff] [blame] | 52 | escape = TRUE, |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 53 | threeparttable = FALSE, |
Augusto Magalhães | f17fa46 | 2019-03-05 12:55:21 +0900 | [diff] [blame] | 54 | fixed_small_size = FALSE, |
Hao Zhu | 1ac13ad | 2018-01-08 16:12:24 -0500 | [diff] [blame] | 55 | general_title = "Note: ", |
| 56 | number_title = "", |
| 57 | alphabet_title = "", |
Hao Zhu | 25efb13 | 2018-05-20 22:00:56 -0400 | [diff] [blame] | 58 | symbol_title = "", |
Hao Zhu | 149faed | 2018-10-23 16:36:22 -0400 | [diff] [blame] | 59 | title_format = "italic", |
| 60 | symbol_manual = NULL |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 61 | ) { |
| 62 | kable_format <- attr(kable_input, "format") |
| 63 | if (!kable_format %in% c("html", "latex")) { |
Hao Zhu | 401ebd8 | 2018-01-14 17:10:20 -0500 | [diff] [blame] | 64 | warning("Please specify format in kable. kableExtra can customize either ", |
| 65 | "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ", |
| 66 | "for details.") |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 67 | return(kable_input) |
| 68 | } |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 69 | if (length(alphabet) > 26) { |
| 70 | alphabet <- alphabet[1:26] |
| 71 | warning("Please don't use more than 26 footnotes in table_footnote ", |
| 72 | "alphabet. Use number instead.") |
| 73 | } |
| 74 | if (length(symbol) > 20) { |
| 75 | symbol <- symbol[1:20] |
| 76 | warning("Please don't use more than 20 footnotes in table_footnote ", |
| 77 | "symbol. Use number instead.") |
| 78 | } |
Hao Zhu | e0782ab | 2018-01-09 13:24:13 -0500 | [diff] [blame] | 79 | footnote_titles <- list( |
| 80 | general = general_title, number = number_title, |
| 81 | alphabet = alphabet_title, symbol = symbol_title |
| 82 | ) |
| 83 | footnote_contents <- list( |
| 84 | general = general, number = number, alphabet = alphabet, symbol = symbol |
| 85 | ) |
| 86 | notnull <- names(footnote_contents)[!sapply(footnote_contents, is.null)] |
| 87 | if (length(notnull) == 0) {return(kable_input)} |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 88 | footnote_order <- footnote_order[footnote_order %in% notnull] |
| 89 | footnote_titles <- footnote_titles[footnote_order] |
| 90 | footnote_contents <- footnote_contents[footnote_order] |
Hao Zhu | e0782ab | 2018-01-09 13:24:13 -0500 | [diff] [blame] | 91 | if (escape) { |
| 92 | if (kable_format == "html") { |
| 93 | footnote_contents <- lapply(footnote_contents, escape_html) |
| 94 | footnote_titles <- lapply(footnote_titles, escape_html) |
| 95 | } else { |
Hao Zhu | d463087 | 2018-03-26 11:26:36 -0400 | [diff] [blame] | 96 | footnote_contents <- lapply(footnote_contents, escape_latex2) |
Hao Zhu | 1aff734 | 2018-04-02 18:33:15 -0400 | [diff] [blame] | 97 | footnote_contents <- lapply(footnote_contents, linebreak) |
Hao Zhu | d463087 | 2018-03-26 11:26:36 -0400 | [diff] [blame] | 98 | footnote_titles <- lapply(footnote_titles, escape_latex2) |
Hao Zhu | 1aff734 | 2018-04-02 18:33:15 -0400 | [diff] [blame] | 99 | footnote_titles <- lapply(footnote_titles, linebreak) |
Hao Zhu | e0782ab | 2018-01-09 13:24:13 -0500 | [diff] [blame] | 100 | } |
| 101 | } |
Hao Zhu | 25efb13 | 2018-05-20 22:00:56 -0400 | [diff] [blame] | 102 | title_format <- match.arg(title_format, c("italic", "bold", "underline"), |
| 103 | several.ok = TRUE) |
| 104 | footnote_titles <- lapply(footnote_titles, footnote_title_format, |
| 105 | kable_format, title_format) |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 106 | footnote_table <- footnote_table_maker( |
Hao Zhu | 149faed | 2018-10-23 16:36:22 -0400 | [diff] [blame] | 107 | kable_format, footnote_titles, footnote_contents, symbol_manual |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 108 | ) |
| 109 | if (kable_format == "html") { |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 110 | return(footnote_html(kable_input, footnote_table, footnote_as_chunk)) |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 111 | } |
Hao Zhu | 19c4fa5 | 2018-01-09 12:01:14 -0500 | [diff] [blame] | 112 | if (kable_format == "latex") { |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 113 | return(footnote_latex(kable_input, footnote_table, footnote_as_chunk, |
Hao Zhu | 72917f9 | 2019-03-15 18:41:42 -0400 | [diff] [blame^] | 114 | threeparttable, fixed_small_size)) |
Hao Zhu | 19c4fa5 | 2018-01-09 12:01:14 -0500 | [diff] [blame] | 115 | } |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 116 | } |
| 117 | |
Hao Zhu | 25efb13 | 2018-05-20 22:00:56 -0400 | [diff] [blame] | 118 | footnote_title_format <- function(x, format, title_format) { |
| 119 | if (x == "") return(x) |
| 120 | if (format == "html") { |
| 121 | title_style <- "" |
| 122 | if ("italic" %in% title_format) { |
| 123 | title_style <- paste0(title_style, "font-style: italic;") |
| 124 | } |
| 125 | if ("bold" %in% title_format) { |
| 126 | title_style <- paste0(title_style, "font-weight: bold;") |
| 127 | } |
| 128 | if ("underline" %in% title_format) { |
| 129 | title_style <- paste0(title_style, "text-decoration: underline;") |
| 130 | } |
| 131 | return(paste0( |
| 132 | '<span style="', title_style, '">', x, '</span>' |
| 133 | )) |
| 134 | } else { |
| 135 | if ("italic" %in% title_format) { |
| 136 | x <- paste0("\\\\textit\\{", x, "\\}") |
| 137 | } |
| 138 | if ("bold" %in% title_format) { |
| 139 | x <- paste0("\\\\textbf\\{", x, "\\}") |
| 140 | } |
| 141 | if ("underline" %in% title_format) { |
| 142 | x <- paste0("\\\\underline\\{", x, "\\}") |
| 143 | } |
| 144 | return(x) |
| 145 | } |
| 146 | } |
| 147 | |
Hao Zhu | 149faed | 2018-10-23 16:36:22 -0400 | [diff] [blame] | 148 | footnote_table_maker <- function(format, footnote_titles, footnote_contents, |
| 149 | symbol_manual) { |
| 150 | if (is.null(symbol_manual)) { |
| 151 | number_index <- read.csv(system.file("symbol_index.csv", |
| 152 | package = "kableExtra")) |
| 153 | if (format == "latex") { |
| 154 | symbol_index <- number_index$symbol.latex |
| 155 | } else { |
| 156 | symbol_index <- number_index$symbol.html |
| 157 | } |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 158 | } else { |
Hao Zhu | 149faed | 2018-10-23 16:36:22 -0400 | [diff] [blame] | 159 | symbol_index <- symbol_manual |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 160 | } |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 161 | |
Hao Zhu | 149faed | 2018-10-23 16:36:22 -0400 | [diff] [blame] | 162 | |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 163 | if (!is.null(footnote_contents$general)) { |
| 164 | footnote_contents$general <- data.frame( |
| 165 | index = "", |
Hao Zhu | bab692d | 2018-01-09 17:49:55 -0500 | [diff] [blame] | 166 | footnote = footnote_contents$general |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 167 | ) |
| 168 | } |
| 169 | if (!is.null(footnote_contents$number)) { |
| 170 | footnote_contents$number <- data.frame( |
| 171 | index = as.character(1:length(footnote_contents$number)), |
| 172 | footnote = footnote_contents$number |
| 173 | ) |
| 174 | } |
| 175 | if (!is.null(footnote_contents$alphabet)) { |
| 176 | footnote_contents$alphabet <- data.frame( |
| 177 | index = letters[1:length(footnote_contents$alphabet)], |
| 178 | footnote = footnote_contents$alphabet |
| 179 | ) |
| 180 | } |
| 181 | if (!is.null(footnote_contents$symbol)) { |
| 182 | footnote_contents$symbol <- data.frame( |
| 183 | index = symbol_index[1:length(footnote_contents$symbol)], |
| 184 | footnote = footnote_contents$symbol |
| 185 | ) |
| 186 | } |
| 187 | |
| 188 | out <- list() |
| 189 | out$contents <- footnote_contents |
| 190 | out$titles <- footnote_titles |
| 191 | return(out) |
| 192 | } |
| 193 | |
| 194 | # HTML |
Hao Zhu | 1ac13ad | 2018-01-08 16:12:24 -0500 | [diff] [blame] | 195 | footnote_html <- function(kable_input, footnote_table, footnote_as_chunk) { |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 196 | kable_attrs <- attributes(kable_input) |
| 197 | kable_xml <- read_kable_as_xml(kable_input) |
| 198 | |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 199 | new_html_footnote <- html_tfoot_maker(footnote_table, footnote_as_chunk) |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 200 | xml_add_child(kable_xml, new_html_footnote) |
| 201 | |
| 202 | out <- as_kable_xml(kable_xml) |
| 203 | attributes(out) <- kable_attrs |
Hao Zhu | f210083 | 2018-01-11 16:20:29 -0500 | [diff] [blame] | 204 | if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out)) |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 205 | return(out) |
| 206 | } |
| 207 | |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 208 | html_tfoot_maker <- function(footnote_table, footnote_as_chunk) { |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 209 | footnote_types <- names(footnote_table$contents) |
| 210 | footnote_text <- c() |
| 211 | for (i in footnote_types) { |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 212 | footnote_text <- c(footnote_text, html_tfoot_maker_( |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 213 | footnote_table$contents[[i]], footnote_table$titles[[i]], i, |
| 214 | footnote_as_chunk)) |
| 215 | } |
| 216 | footnote_text <- paste0( |
| 217 | "<tfoot>", paste0(footnote_text, collapse = ""), "</tfoot>" |
| 218 | ) |
| 219 | footnote_node <- read_html(footnote_text, options = c("RECOVER", "NOERROR")) |
| 220 | return(xml_child(xml_child(footnote_node, 1), 1)) |
| 221 | } |
| 222 | |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 223 | html_tfoot_maker_ <- function(ft_contents, ft_title, ft_type, ft_chunk) { |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 224 | footnote_text <- apply(ft_contents, 1, function(x) { |
| 225 | paste0('<sup>', x[1], '</sup> ', x[2]) |
| 226 | }) |
| 227 | if (ft_title != "") { |
Hao Zhu | 25efb13 | 2018-05-20 22:00:56 -0400 | [diff] [blame] | 228 | title_text <- ft_title |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 229 | footnote_text <- c(title_text, footnote_text) |
| 230 | } |
| 231 | if (!ft_chunk) { |
| 232 | footnote_text <- paste0( |
| 233 | '<tr><td style="padding: 0; border: 0;" colspan="100%">', |
| 234 | footnote_text, '</td></tr>' |
| 235 | ) |
| 236 | } else { |
| 237 | footnote_text <- paste0( |
| 238 | '<tr><td style="padding: 0; border: 0;" colspan="100%">', |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 239 | paste0(footnote_text, collapse = " "), |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 240 | '</td></tr>' |
| 241 | ) |
| 242 | } |
Hao Zhu | 8dd65a9 | 2018-01-05 20:40:27 -0500 | [diff] [blame] | 243 | return(footnote_text) |
| 244 | } |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 245 | |
| 246 | # LaTeX |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 247 | footnote_latex <- function(kable_input, footnote_table, footnote_as_chunk, |
Hao Zhu | 72917f9 | 2019-03-15 18:41:42 -0400 | [diff] [blame^] | 248 | threeparttable, fixed_small_size) { |
Hao Zhu | 1ac13ad | 2018-01-08 16:12:24 -0500 | [diff] [blame] | 249 | table_info <- magic_mirror(kable_input) |
Hao Zhu | 3fc0e88 | 2018-04-03 16:06:41 -0400 | [diff] [blame] | 250 | out <- solve_enc(kable_input) |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 251 | |
Hao Zhu | 19c4fa5 | 2018-01-09 12:01:14 -0500 | [diff] [blame] | 252 | footnote_text <- latex_tfoot_maker(footnote_table, footnote_as_chunk, |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 253 | table_info$ncol, threeparttable) |
| 254 | if (threeparttable) { |
Hao Zhu | 23bde3a | 2018-03-28 16:00:55 -0400 | [diff] [blame] | 255 | if (table_info$tabular %in% c("longtable", "longtabu") ) { |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 256 | out <- sub(paste0("\\\\begin\\{", table_info$tabular, "\\}"), |
Hao Zhu | 27c7c85 | 2018-03-26 16:18:23 -0400 | [diff] [blame] | 257 | paste0("\\\\begin{ThreePartTable}\n\\\\begin{TableNotes}", |
| 258 | ifelse(footnote_as_chunk, "[para]", ""), |
Augusto Magalhães | f17fa46 | 2019-03-05 12:55:21 +0900 | [diff] [blame] | 259 | ifelse(fixed_small_size,"\n\\\\small\n","\n"), footnote_text, |
Hao Zhu | 27c7c85 | 2018-03-26 16:18:23 -0400 | [diff] [blame] | 260 | "\n\\\\end{TableNotes}\n\\\\begin{", |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 261 | table_info$tabular, "}"), |
| 262 | out) |
Hao Zhu | 23bde3a | 2018-03-28 16:00:55 -0400 | [diff] [blame] | 263 | out <- sub(paste0("\\\\end\\{",table_info$tabular, "\\}"), |
| 264 | paste0("\\\\end{", table_info$tabular, |
| 265 | "}\n\\\\end{ThreePartTable}"), |
| 266 | out) |
| 267 | if (table_info$booktabs) { |
| 268 | out <- sub("\\\\bottomrule", "\\\\bottomrule\n\\\\insertTableNotes", out) |
| 269 | } else { |
| 270 | out <- sub("\\\\hline\n\\\\end\\{longtable\\}", |
| 271 | "\\\\hline\n\\\\insertTableNotes\n\\\\end\\{longtable\\}", |
| 272 | out) |
| 273 | } |
Hao Zhu | 27c7c85 | 2018-03-26 16:18:23 -0400 | [diff] [blame] | 274 | } else { |
Hao Zhu | 23bde3a | 2018-03-28 16:00:55 -0400 | [diff] [blame] | 275 | if (table_info$tabular == "tabu") { |
| 276 | stop("Please use `longtable = T` in your kable function. ", |
| 277 | "Full width threeparttable only works with longtable.") |
| 278 | } |
| 279 | out <- sub(paste0("\\\\begin\\{", table_info$tabular, "\\}"), |
| 280 | paste0("\\\\begin{threeparttable}\n\\\\begin{", |
| 281 | table_info$tabular, "}"), |
| 282 | out) |
| 283 | out <- sub(table_info$end_tabular, |
| 284 | paste0("\\\\end{", table_info$tabular, |
| 285 | "}\n\\\\begin{tablenotes}", |
| 286 | ifelse(footnote_as_chunk, "[para]", ""), |
Augusto Magalhães | f17fa46 | 2019-03-05 12:55:21 +0900 | [diff] [blame] | 287 | ifelse(fixed_small_size,"\n\\\\small\n","\n"), footnote_text, |
Hao Zhu | 23bde3a | 2018-03-28 16:00:55 -0400 | [diff] [blame] | 288 | "\n\\\\end{tablenotes}\n\\\\end{threeparttable}"), |
Hao Zhu | 27c7c85 | 2018-03-26 16:18:23 -0400 | [diff] [blame] | 289 | out) |
| 290 | } |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 291 | } else { |
Hao Zhu | 23bde3a | 2018-03-28 16:00:55 -0400 | [diff] [blame] | 292 | if (table_info$booktabs) { |
| 293 | out <- sub("\\\\bottomrule", |
| 294 | paste0("\\\\bottomrule\n", footnote_text), out) |
| 295 | } else { |
| 296 | out <- sub(table_info$end_tabular, |
| 297 | paste0(footnote_text, "\n\\\\end{", table_info$tabular, "}"), |
| 298 | out) |
| 299 | } |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 300 | } |
| 301 | |
Hao Zhu | 19c4fa5 | 2018-01-09 12:01:14 -0500 | [diff] [blame] | 302 | out <- structure(out, format = "latex", class = "knitr_kable") |
| 303 | attr(out, "kable_meta") <- table_info |
| 304 | return(out) |
Hao Zhu | 19c4fa5 | 2018-01-09 12:01:14 -0500 | [diff] [blame] | 305 | } |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 306 | |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 307 | latex_tfoot_maker <- function(footnote_table, footnote_as_chunk, ncol, |
| 308 | threeparttable) { |
Hao Zhu | 19c4fa5 | 2018-01-09 12:01:14 -0500 | [diff] [blame] | 309 | footnote_types <- names(footnote_table$contents) |
| 310 | footnote_text <- c() |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 311 | if (threeparttable) { |
| 312 | for (i in footnote_types) { |
| 313 | footnote_text <- c(footnote_text, latex_tfoot_maker_tpt_( |
| 314 | footnote_table$contents[[i]], footnote_table$titles[[i]], |
| 315 | footnote_as_chunk, ncol)) |
| 316 | } |
| 317 | } else { |
| 318 | for (i in footnote_types) { |
| 319 | footnote_text <- c(footnote_text, latex_tfoot_maker_( |
| 320 | footnote_table$contents[[i]], footnote_table$titles[[i]], |
| 321 | footnote_as_chunk, ncol)) |
| 322 | } |
Hao Zhu | 19c4fa5 | 2018-01-09 12:01:14 -0500 | [diff] [blame] | 323 | } |
| 324 | footnote_text <- paste0(footnote_text, collapse = "\n") |
| 325 | return(footnote_text) |
| 326 | } |
Hao Zhu | 9f91748 | 2018-01-08 18:09:33 -0500 | [diff] [blame] | 327 | |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 328 | latex_tfoot_maker_ <- function(ft_contents, ft_title, ft_chunk, ncol) { |
Hao Zhu | 19c4fa5 | 2018-01-09 12:01:14 -0500 | [diff] [blame] | 329 | footnote_text <- apply(ft_contents, 1, function(x) { |
| 330 | if (x[1] == "") { |
| 331 | x[2] |
| 332 | } else { |
| 333 | paste0('\\\\textsuperscript{', x[1], '} ', x[2]) |
| 334 | } |
| 335 | }) |
| 336 | if (ft_title != "") { |
Hao Zhu | 25efb13 | 2018-05-20 22:00:56 -0400 | [diff] [blame] | 337 | title_text <- ft_title |
Hao Zhu | 19c4fa5 | 2018-01-09 12:01:14 -0500 | [diff] [blame] | 338 | footnote_text <- c(title_text, footnote_text) |
| 339 | } |
| 340 | if (!ft_chunk) { |
| 341 | footnote_text <- paste0( |
| 342 | '\\\\multicolumn{', ncol, '}{l}{', footnote_text, '}\\\\\\\\' |
| 343 | ) |
| 344 | } else { |
| 345 | footnote_text <- paste0( |
| 346 | '\\\\multicolumn{', ncol, '}{l}{', |
| 347 | paste0(footnote_text, collapse = " "), |
| 348 | '}\\\\\\\\' |
| 349 | ) |
| 350 | } |
| 351 | return(footnote_text) |
Hao Zhu | cdd7f92 | 2018-01-08 11:39:40 -0500 | [diff] [blame] | 352 | } |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 353 | |
| 354 | latex_tfoot_maker_tpt_ <- function(ft_contents, ft_title, ft_chunk, ncol) { |
| 355 | footnote_text <- apply(ft_contents, 1, function(x) { |
| 356 | if (x[1] == "") { |
| 357 | paste0('\\\\item ', x[2]) |
| 358 | } else { |
| 359 | paste0('\\\\item[', x[1], '] ', x[2]) |
| 360 | } |
| 361 | }) |
| 362 | if (ft_title != "") { |
Hao Zhu | 25efb13 | 2018-05-20 22:00:56 -0400 | [diff] [blame] | 363 | title_text <- paste0('\\\\item ', ft_title, ' ') |
Hao Zhu | 17814c7 | 2018-01-10 11:32:14 -0500 | [diff] [blame] | 364 | footnote_text <- c(title_text, footnote_text) |
| 365 | } |
| 366 | footnote_text <- paste0(footnote_text, collapse = "\n") |
| 367 | # if (!ft_chunk) { |
| 368 | # footnote_text <- paste0(footnote_text, collapse = "\n") |
| 369 | # } else { |
| 370 | # footnote_text <- paste0(footnote_text, collapse = " ") |
| 371 | # } |
| 372 | return(footnote_text) |
| 373 | } |