Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 1 | #' HTML table attributes |
| 2 | #' |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 3 | #' @description This function provides a cleaner approach to modify the style |
Hao Zhu | e7c8f70 | 2017-10-10 13:22:59 -0400 | [diff] [blame] | 4 | #' of HTML tables other than using the `table.attr` option in `knitr::kable()`. Note |
| 5 | #' that those bootstrap options requires Twitter bootstrap theme, which is not avaiable |
| 6 | #' in some customized template being loaded. |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 7 | #' |
Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 8 | #' @param kable_input Output of `knitr::kable()` with `format` specified |
| 9 | #' @param bootstrap_options A character vector for bootstrap table options. |
Hao Zhu | 6a07646 | 2017-03-01 12:59:01 -0500 | [diff] [blame] | 10 | #' Please see package vignette or visit the w3schools' |
Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 11 | #' \href{https://www.w3schools.com/bootstrap/bootstrap_tables.asp}{Bootstrap Page} |
| 12 | #' for more information. Possible options include `basic`, `striped`, |
| 13 | #' `bordered`, `hover`, `condensed` and `responsive`. |
| 14 | #' @param latex_options A character vector for LaTeX table options. Please see |
Hao Zhu | 6a07646 | 2017-03-01 12:59:01 -0500 | [diff] [blame] | 15 | #' package vignette for more information. Possible options include |
Rob Shepherd | c59d15e | 2017-08-26 16:06:36 +0100 | [diff] [blame] | 16 | #' `basic`, `striped`, `hold_position`, `HOLD_position`, `scale_down` & `repeat_header`. |
Hao Zhu | 971d89f | 2017-06-07 19:22:47 -0400 | [diff] [blame] | 17 | #' `striped` will add alternative row colors to the table. It will imports |
| 18 | #' `LaTeX` package `xcolor` if enabled. `hold_position` will "hold" the floating |
| 19 | #' table to the exact position. It is useful when the `LaTeX` table is contained |
| 20 | #' in a `table` environment after you specified captions in `kable()`. It will |
| 21 | #' force the table to stay in the position where it was created in the document. |
Hao Zhu | 53e240f | 2017-09-04 20:04:29 -0400 | [diff] [blame] | 22 | #' A stronger version: `HOLD_position` requires the `float` package and specifies `[H]`. |
Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 23 | #' `scale_down` is useful for super wide table. It will automatically adjust |
Hao Zhu | 971d89f | 2017-06-07 19:22:47 -0400 | [diff] [blame] | 24 | #' the table to page width. `repeat_header` in only meaningful in a longtable |
| 25 | #' environment. It will let the header row repeat on every page in that long |
bsalzer | 74e2e22 | 2018-02-12 17:23:12 -0500 | [diff] [blame] | 26 | #' table. `row_label_right` will right justify the row labels and `row_label_center` |
| 27 | #' will center justify the row labels. Default justification is left. |
Hao Zhu | 59f5fe0 | 2017-02-22 11:27:14 -0500 | [diff] [blame] | 28 | #' @param full_width A `TRUE` or `FALSE` variable controlling whether the HTML |
Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 29 | #' table should have 100\% width. Since HTML and pdf have different flavors on |
| 30 | #' the preferable format for `full_width`. If not specified, a HTML table will |
| 31 | #' have full width by default but this option will be set to `FALSE` for a |
| 32 | #' LaTeX table |
| 33 | #' @param position A character string determining how to position the table |
| 34 | #' on a page. Possible values include `left`, `center`, `right`, `float_left` |
| 35 | #' and `float_right`. Please see the package doc site for demonstrations. For |
| 36 | #' a `LaTeX` table, if `float_*` is selected, `LaTeX` package `wrapfig` will be |
| 37 | #' imported. |
Hao Zhu | 9495658 | 2017-02-21 18:18:29 -0500 | [diff] [blame] | 38 | #' @param font_size A numeric input for table font size |
Hao Zhu | e1be960 | 2017-08-17 15:44:31 -0400 | [diff] [blame] | 39 | #' @param ... extra options for HTML or LaTeX. See `details`. |
| 40 | #' |
| 41 | #' @details For LaTeX, extra options includes: |
| 42 | #' - `repeat_header_method` can either be `append`(default) or `replace` |
| 43 | #' - `repeat_header_text` is just a text string you want to append on or |
| 44 | #' replace the caption. |
Hao Zhu | 71a224f | 2017-08-18 11:06:22 -0400 | [diff] [blame] | 45 | #' - `stripe_color` allows users to pick a different color for their strip lines. |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 46 | #' - `latex_table_env` character string to define customized table environment |
| 47 | #' such as tabu or tabularx.You shouldn't expect all features could be |
| 48 | #' supported in self-defined environments. |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 49 | #' |
Hao Zhu | 78e6122 | 2017-05-24 20:53:35 -0400 | [diff] [blame] | 50 | #' @examples x_html <- knitr::kable(head(mtcars), "html") |
| 51 | #' kable_styling(x_html, "striped", position = "left", font_size = 7) |
| 52 | #' |
| 53 | #' x_latex <- knitr::kable(head(mtcars), "latex") |
| 54 | #' kable_styling(x_latex, latex_options = "striped", position = "float_left") |
| 55 | #' |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 56 | #' @export |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 57 | kable_styling <- function(kable_input, |
| 58 | bootstrap_options = "basic", |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 59 | latex_options = "basic", |
| 60 | full_width = NULL, |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 61 | position = "center", |
Hao Zhu | a31e97f | 2017-06-08 14:55:41 -0400 | [diff] [blame] | 62 | font_size = NULL, |
| 63 | ...) { |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 64 | |
| 65 | if (length(bootstrap_options) == 1 && bootstrap_options == "basic") { |
| 66 | bootstrap_options <- getOption("kable_styling_bootstrap_options", "basic") |
| 67 | } |
| 68 | if (length(latex_options) == 1 && latex_options == "basic") { |
| 69 | latex_options <- getOption("kable_styling_latex_options", "basic") |
| 70 | } |
| 71 | if (position == "center") { |
| 72 | position <- getOption("kable_styling_position", "center") |
| 73 | } |
| 74 | position <- match.arg(position, |
| 75 | c("center", "left", "right", "float_left", "float_right")) |
| 76 | if (is.null(font_size)) { |
| 77 | font_size <- getOption("kable_styling_font_size", NULL) |
| 78 | } |
| 79 | |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 80 | kable_format <- attr(kable_input, "format") |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 81 | |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 82 | if (!kable_format %in% c("html", "latex")) { |
Hao Zhu | 401ebd8 | 2018-01-14 17:10:20 -0500 | [diff] [blame] | 83 | warning("Please specify format in kable. kableExtra can customize either ", |
| 84 | "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ", |
| 85 | "for details.") |
| 86 | return(kable_input) |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 87 | } |
| 88 | if (kable_format == "html") { |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 89 | if (is.null(full_width)) { |
| 90 | full_width <- getOption("kable_styling_full_width", T) |
| 91 | } |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 92 | return(htmlTable_styling(kable_input, |
| 93 | bootstrap_options = bootstrap_options, |
| 94 | full_width = full_width, |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 95 | position = position, |
Hao Zhu | a31e97f | 2017-06-08 14:55:41 -0400 | [diff] [blame] | 96 | font_size = font_size, ...)) |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 97 | } |
| 98 | if (kable_format == "latex") { |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 99 | if (is.null(full_width)) { |
| 100 | full_width <- getOption("kable_styling_full_width", F) |
| 101 | } |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 102 | return(pdfTable_styling(kable_input, |
| 103 | latex_options = latex_options, |
| 104 | full_width = full_width, |
| 105 | position = position, |
Hao Zhu | a31e97f | 2017-06-08 14:55:41 -0400 | [diff] [blame] | 106 | font_size = font_size, ...)) |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 107 | } |
| 108 | } |
| 109 | |
| 110 | # htmlTable Styling ------------ |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 111 | htmlTable_styling <- function(kable_input, |
| 112 | bootstrap_options = "basic", |
| 113 | full_width = T, |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 114 | position = c("center", "left", "right", |
| 115 | "float_left", "float_right"), |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 116 | font_size = NULL) { |
Hao Zhu | 909ea38 | 2017-06-12 15:43:47 -0400 | [diff] [blame] | 117 | kable_attrs <- attributes(kable_input) |
Hao Zhu | 9bab153 | 2017-07-24 15:08:41 -0400 | [diff] [blame] | 118 | kable_xml <- read_kable_as_xml(kable_input) |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 119 | |
| 120 | # Modify class |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 121 | bootstrap_options <- match.arg( |
| 122 | bootstrap_options, |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 123 | c("basic", "striped", "bordered", "hover", "condensed", "responsive"), |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 124 | several.ok = T |
| 125 | ) |
| 126 | |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 127 | kable_xml_class <- NULL |
| 128 | if (xml_has_attr(kable_xml, "class")) { |
| 129 | kable_xml_class <- xml_attr(kable_xml, "class") |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 130 | } |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 131 | if (length(bootstrap_options) == 1 && bootstrap_options == "basic") { |
| 132 | bootstrap_options <- "table" |
| 133 | } else { |
| 134 | bootstrap_options <- bootstrap_options[bootstrap_options != "basic"] |
| 135 | bootstrap_options <- paste0("table-", bootstrap_options) |
| 136 | bootstrap_options <- c("table", bootstrap_options) |
| 137 | } |
| 138 | xml_attr(kable_xml, "class") <- paste(c(kable_xml_class, bootstrap_options), |
| 139 | collapse = " ") |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 140 | |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 141 | # Modify style |
| 142 | kable_xml_style <- NULL |
| 143 | if (xml_has_attr(kable_xml, "style")) { |
| 144 | kable_xml_style <- xml_attr(kable_xml, "style") |
| 145 | } |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 146 | if (!is.null(font_size)) { |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 147 | kable_xml_style <- c(kable_xml_style, |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 148 | paste0("font-size: ", font_size, "px;")) |
Hao Zhu | fc14c9b | 2017-05-22 14:03:22 -0400 | [diff] [blame] | 149 | kable_caption_node <- xml_tpart(kable_xml, "caption") |
| 150 | if (!is.null(kable_caption_node)) { |
| 151 | xml_attr(kable_caption_node, "style") <- "font-size: initial !important;" |
| 152 | } |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 153 | } |
| 154 | if (!full_width) { |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 155 | kable_xml_style <- c(kable_xml_style, "width: auto !important;") |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 156 | } |
Hao Zhu | 9495658 | 2017-02-21 18:18:29 -0500 | [diff] [blame] | 157 | |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 158 | position <- match.arg(position) |
| 159 | position_style <- switch( |
| 160 | position, |
| 161 | center = "margin-left: auto; margin-right: auto;", |
Hao Zhu | fd516ba | 2017-07-28 14:30:25 -0400 | [diff] [blame] | 162 | left = "", |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 163 | right = "margin-right: 0; margin-left: auto", |
| 164 | float_left = "float: left; margin-right: 10px;", |
| 165 | float_right = "float: right; margin-left: 10px;" |
| 166 | ) |
| 167 | kable_xml_style <- c(kable_xml_style, position_style) |
| 168 | |
Hao Zhu | 2623412 | 2017-02-22 15:34:33 -0500 | [diff] [blame] | 169 | if (length(kable_xml_style) != 0) { |
| 170 | xml_attr(kable_xml, "style") <- paste(kable_xml_style, collapse = " ") |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 171 | } |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 172 | |
Hao Zhu | f2dfd14 | 2017-07-24 14:43:28 -0400 | [diff] [blame] | 173 | out <- as_kable_xml(kable_xml) |
Hao Zhu | 909ea38 | 2017-06-12 15:43:47 -0400 | [diff] [blame] | 174 | attributes(out) <- kable_attrs |
Hao Zhu | f210083 | 2018-01-11 16:20:29 -0500 | [diff] [blame] | 175 | if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out)) |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 176 | return(out) |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 177 | } |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 178 | |
| 179 | # LaTeX table style |
| 180 | pdfTable_styling <- function(kable_input, |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 181 | latex_options = "basic", |
| 182 | full_width = F, |
| 183 | position = c("center", "left", "right", |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 184 | "float_left", "float_right"), |
Hao Zhu | a31e97f | 2017-06-08 14:55:41 -0400 | [diff] [blame] | 185 | font_size = NULL, |
Hao Zhu | ca211db | 2017-07-25 00:06:43 -0400 | [diff] [blame] | 186 | repeat_header_text = "\\textit{(continued)}", |
Hao Zhu | e1be960 | 2017-08-17 15:44:31 -0400 | [diff] [blame] | 187 | repeat_header_method = c("append", "replace"), |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 188 | repeat_header_continued = FALSE, |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 189 | stripe_color = "gray!6", |
| 190 | latex_table_env = NULL) { |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 191 | |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 192 | latex_options <- match.arg( |
| 193 | latex_options, |
bsalzer | 74e2e22 | 2018-02-12 17:23:12 -0500 | [diff] [blame] | 194 | c("basic", "striped", "hold_position", "HOLD_position", "scale_down", "repeat_header", |
| 195 | "row_label_right","row_label_center"), |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 196 | several.ok = T |
| 197 | ) |
| 198 | |
Hao Zhu | ca211db | 2017-07-25 00:06:43 -0400 | [diff] [blame] | 199 | repeat_header_method <- match.arg(repeat_header_method) |
| 200 | |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 201 | out <- NULL |
Hao Zhu | d2c0f73 | 2017-08-26 10:40:14 -0400 | [diff] [blame] | 202 | out <- enc2utf8(as.character(kable_input)) |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 203 | table_info <- magic_mirror(kable_input) |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 204 | |
| 205 | if ("striped" %in% latex_options) { |
Hao Zhu | 71a224f | 2017-08-18 11:06:22 -0400 | [diff] [blame] | 206 | out <- styling_latex_striped(out, table_info, stripe_color) |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | # hold_position is only meaningful in a table environment |
| 210 | if ("hold_position" %in% latex_options & table_info$table_env) { |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 211 | out <- styling_latex_hold_position(out) |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 212 | } |
| 213 | |
Rob Shepherd | c59d15e | 2017-08-26 16:06:36 +0100 | [diff] [blame] | 214 | # HOLD_position is only meaningful in a table environment |
| 215 | if ("HOLD_position" %in% latex_options & table_info$table_env) { |
| 216 | out <- styling_latex_HOLD_position(out) |
| 217 | } |
| 218 | |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 219 | if ("scale_down" %in% latex_options) { |
| 220 | out <- styling_latex_scale_down(out, table_info) |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 221 | } |
| 222 | |
Hao Zhu | 971d89f | 2017-06-07 19:22:47 -0400 | [diff] [blame] | 223 | if ("repeat_header" %in% latex_options & table_info$tabular == "longtable") { |
Hao Zhu | ca211db | 2017-07-25 00:06:43 -0400 | [diff] [blame] | 224 | out <- styling_latex_repeat_header(out, table_info, repeat_header_text, |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 225 | repeat_header_method, repeat_header_continued) |
Hao Zhu | 971d89f | 2017-06-07 19:22:47 -0400 | [diff] [blame] | 226 | } |
| 227 | |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 228 | if (full_width) { |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 229 | latex_table_env <- ifelse(table_info$tabular == "longtable", |
| 230 | "longtabu", "tabu") |
| 231 | full_width_return <- styling_latex_full_width(out, table_info) |
| 232 | out <- full_width_return[[1]] |
| 233 | table_info$align_vector <- full_width_return[[2]] |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 234 | } |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 235 | |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 236 | if (!is.null(font_size)) { |
| 237 | out <- styling_latex_font_size(out, table_info, font_size) |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 238 | } |
| 239 | |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 240 | if (!is.null(latex_table_env)) { |
| 241 | out <- styling_latex_table_env(out, table_info$tabular, latex_table_env) |
| 242 | table_info$tabular <- latex_table_env |
| 243 | table_info$begin_tabular <- sub("tabular", latex_table_env, |
| 244 | table_info$begin_tabular) |
| 245 | table_info$end_tabular <- sub("tabular", latex_table_env, |
| 246 | table_info$end_tabular) |
| 247 | } |
| 248 | |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 249 | position <- match.arg(position) |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 250 | out <- styling_latex_position(out, table_info, position, latex_options) |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 251 | |
| 252 | out <- structure(out, format = "latex", class = "knitr_kable") |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 253 | attr(out, "kable_meta") <- table_info |
bsalzer | 74e2e22 | 2018-02-12 17:23:12 -0500 | [diff] [blame] | 254 | |
| 255 | if ("row_label_right" %in% latex_options | "row_label_center" %in% latex_options) { |
| 256 | if ( "row_label_right" %in% latex_options ) { |
| 257 | row_label_orientation <- "r" |
| 258 | } else { |
| 259 | row_label_orientation <- "c" |
| 260 | } |
| 261 | |
| 262 | if(table_info$tabular=="longtable") { |
| 263 | out <- sub("\\\\begin\\{longtable\\}\\{l", |
bsalzer | 8669213 | 2018-02-13 19:50:05 -0500 | [diff] [blame^] | 264 | paste0("\\\\begin\\{longtable\\}\\{", |
bsalzer | 74e2e22 | 2018-02-12 17:23:12 -0500 | [diff] [blame] | 265 | row_label_orientation), |
| 266 | out) |
| 267 | } else { |
| 268 | out <- sub("\\\\begin\\{tabular\\}\\{l", |
bsalzer | 8669213 | 2018-02-13 19:50:05 -0500 | [diff] [blame^] | 269 | paste0("\\\\begin\\{tabular\\}\\{", |
bsalzer | 74e2e22 | 2018-02-12 17:23:12 -0500 | [diff] [blame] | 270 | row_label_orientation), |
| 271 | out) |
| 272 | } |
| 273 | } |
| 274 | |
Hao Zhu | c05e181 | 2017-02-25 01:45:35 -0500 | [diff] [blame] | 275 | return(out) |
Hao Zhu | c1f3841 | 2017-02-23 12:13:48 -0500 | [diff] [blame] | 276 | } |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 277 | |
Hao Zhu | e1be960 | 2017-08-17 15:44:31 -0400 | [diff] [blame] | 278 | styling_latex_striped <- function(x, table_info, color) { |
Hao Zhu | 7d4a3e3 | 2017-06-08 21:29:13 -0400 | [diff] [blame] | 279 | # gray!6 is the same as shadecolor ({RGB}{248, 248, 248}) in pdf_document |
| 280 | if (table_info$tabular == "longtable" & !is.na(table_info$caption)) { |
Hao Zhu | e1be960 | 2017-08-17 15:44:31 -0400 | [diff] [blame] | 281 | row_color <- sprintf("\\rowcolors{2}{white}{%s}", color) |
Hao Zhu | 7d4a3e3 | 2017-06-08 21:29:13 -0400 | [diff] [blame] | 282 | } else { |
Hao Zhu | e1be960 | 2017-08-17 15:44:31 -0400 | [diff] [blame] | 283 | row_color <- sprintf("\\rowcolors{2}{%s}{white}", color) |
Hao Zhu | 7d4a3e3 | 2017-06-08 21:29:13 -0400 | [diff] [blame] | 284 | } |
Hao Zhu | 00ba87c | 2017-08-01 12:42:58 -0400 | [diff] [blame] | 285 | |
| 286 | x <- read_lines(x) |
| 287 | if (table_info$booktabs) { |
| 288 | header_rows_start <- which(x == "\\toprule")[1] |
| 289 | header_rows_end <- which(x == "\\midrule")[1] |
| 290 | } else { |
| 291 | header_rows_start <- which(x == "\\hline")[1] |
| 292 | header_rows_end <- which(x == "\\hline")[2] |
| 293 | } |
| 294 | |
| 295 | x <- c( |
| 296 | row_color, |
| 297 | x[1:(header_rows_start - 1)], |
| 298 | "\\hiderowcolors", |
| 299 | x[header_rows_start:header_rows_end], |
| 300 | "\\showrowcolors", |
| 301 | x[(header_rows_end + 1):length(x)], |
| 302 | "\\rowcolors{2}{white}{white}" |
| 303 | ) |
| 304 | x <- paste0(x, collapse = "\n") |
| 305 | return(x) |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | styling_latex_hold_position <- function(x) { |
| 309 | sub("\\\\begin\\{table\\}", "\\\\begin\\{table\\}[!h]", x) |
| 310 | } |
| 311 | |
Rob Shepherd | c59d15e | 2017-08-26 16:06:36 +0100 | [diff] [blame] | 312 | styling_latex_HOLD_position <- function(x) { |
| 313 | sub("\\\\begin\\{table\\}", "\\\\begin\\{table\\}[H]", x) |
| 314 | } |
| 315 | |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 316 | styling_latex_scale_down <- function(x, table_info) { |
| 317 | # You cannot put longtable in a resizebox |
| 318 | # http://tex.stackexchange.com/questions/83457/how-to-resize-or-scale-a-longtable-revised |
| 319 | if (table_info$tabular == "longtable") { |
| 320 | warning("Longtable cannot be resized.") |
| 321 | return(x) |
| 322 | } |
| 323 | x <- sub(table_info$begin_tabular, |
Hao Zhu | cc21dc7 | 2017-05-20 01:15:25 -0400 | [diff] [blame] | 324 | paste0("\\\\resizebox\\{\\\\linewidth\\}\\{\\!\\}\\{", |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 325 | table_info$begin_tabular), |
| 326 | x) |
| 327 | sub(table_info$end_tabular, paste0(table_info$end_tabular, "\\}"), x) |
| 328 | } |
| 329 | |
Hao Zhu | ca211db | 2017-07-25 00:06:43 -0400 | [diff] [blame] | 330 | styling_latex_repeat_header <- function(x, table_info, repeat_header_text, |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 331 | repeat_header_method, |
| 332 | repeat_header_continued) { |
Hao Zhu | a31e97f | 2017-06-08 14:55:41 -0400 | [diff] [blame] | 333 | x <- read_lines(x) |
| 334 | if (table_info$booktabs) { |
| 335 | header_rows_start <- which(x == "\\toprule")[1] |
| 336 | header_rows_end <- which(x == "\\midrule")[1] |
| 337 | } else { |
| 338 | header_rows_start <- which(x == "\\hline")[1] |
| 339 | header_rows_end <- which(x == "\\hline")[2] |
| 340 | } |
Hao Zhu | fdec184 | 2017-06-08 17:06:04 -0400 | [diff] [blame] | 341 | |
| 342 | if (is.na(table_info$caption)) { |
| 343 | continue_line <- paste0( |
| 344 | "\\multicolumn{", table_info$ncol, "}{@{}l}{", repeat_header_text, |
| 345 | "}\\\\" |
| 346 | ) |
| 347 | } else { |
Hao Zhu | ca211db | 2017-07-25 00:06:43 -0400 | [diff] [blame] | 348 | if (repeat_header_method == "append") { |
Hao Zhu | fd2ef9b | 2017-07-25 13:14:18 -0400 | [diff] [blame] | 349 | caption_without_lab <- sub("\\\\label\\{[^\\}]*\\}", "", table_info$caption) |
Hao Zhu | 6f95ea4 | 2017-07-25 13:12:12 -0400 | [diff] [blame] | 350 | repeat_header_text <- paste(caption_without_lab, repeat_header_text) |
Hao Zhu | ca211db | 2017-07-25 00:06:43 -0400 | [diff] [blame] | 351 | } |
Hao Zhu | 68d4fe9 | 2017-07-25 14:07:50 -0400 | [diff] [blame] | 352 | continue_line <- paste0("\\caption[]{", repeat_header_text, "}\\\\") |
Hao Zhu | fdec184 | 2017-06-08 17:06:04 -0400 | [diff] [blame] | 353 | } |
| 354 | |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 355 | if (!table_info$booktabs) { |
| 356 | bottom_part <- NULL |
| 357 | } else { |
| 358 | index_bottomrule <- which(x == "\\bottomrule") |
| 359 | x <- x[-index_bottomrule] |
Hao Zhu | 20784e7 | 2017-10-10 14:48:33 -0400 | [diff] [blame] | 360 | x[index_bottomrule - 1] <- paste0(x[index_bottomrule - 1], "*") |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 361 | |
| 362 | if (repeat_header_continued == FALSE) { |
Hao Zhu | 44f6c49 | 2017-10-20 23:05:37 -0400 | [diff] [blame] | 363 | bottom_part <- "\\\n\\endfoot\n\\bottomrule\n\\endlastfoot" |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 364 | } else { |
| 365 | if (repeat_header_continued == TRUE) { |
Hao Zhu | b7f4f4e | 2017-10-02 14:58:41 -0400 | [diff] [blame] | 366 | bottom_text <- "\\textit{(continued \\ldots)}" |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 367 | } else { |
| 368 | bottom_text <- repeat_header_continued |
| 369 | } |
| 370 | bottom_part <- paste0( |
Hao Zhu | 44f6c49 | 2017-10-20 23:05:37 -0400 | [diff] [blame] | 371 | "\\midrule\n", |
Hao Zhu | b7f4f4e | 2017-10-02 14:58:41 -0400 | [diff] [blame] | 372 | "\\multicolumn{", table_info$ncol, "}{r@{}}{", bottom_text, "}\\\n", |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 373 | "\\endfoot\n", |
Hao Zhu | c83eb63 | 2017-10-10 14:11:08 -0400 | [diff] [blame] | 374 | "\\bottomrule\n", |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 375 | "\\endlastfoot" |
| 376 | ) |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | # x[index_bottomrule - 1] <- paste0(x[index_bottomrule - 1], "*\\bottomrule") |
Hao Zhu | a31e97f | 2017-06-08 14:55:41 -0400 | [diff] [blame] | 381 | x <- c( |
| 382 | x[1:header_rows_end], |
| 383 | "\\endfirsthead", |
| 384 | continue_line, |
| 385 | x[header_rows_start:header_rows_end], |
| 386 | "\\endhead", |
Hao Zhu | 6c9714a | 2017-10-02 14:52:45 -0400 | [diff] [blame] | 387 | bottom_part, |
Hao Zhu | a31e97f | 2017-06-08 14:55:41 -0400 | [diff] [blame] | 388 | x[(header_rows_end + 1):length(x)] |
| 389 | ) |
| 390 | x <- paste0(x, collapse = "\n") |
| 391 | return(x) |
Hao Zhu | 971d89f | 2017-06-07 19:22:47 -0400 | [diff] [blame] | 392 | } |
| 393 | |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 394 | styling_latex_full_width <- function(x, table_info) { |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 395 | col_align <- as.character(factor( |
| 396 | table_info$align_vector, c("c", "l", "r"), |
| 397 | c(">{\\\\centering}X", ">{\\\\raggedright}X", ">{\\\\raggedleft}X") |
| 398 | )) |
| 399 | col_align[is.na(col_align)] <- table_info$align_vector[is.na(col_align)] |
| 400 | col_align_vector <- col_align |
| 401 | col_align <- paste0(" to \\\\linewidth {", paste(col_align, collapse = ""), "}") |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 402 | x <- sub(paste0(table_info$begin_tabular, "\\{[^\\\\n]*\\}"), |
| 403 | table_info$begin_tabular, x) |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 404 | x <- sub(table_info$begin_tabular, |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 405 | paste0(table_info$begin_tabular, col_align), x) |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 406 | return(list(x, col_align_vector)) |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | styling_latex_position <- function(x, table_info, position, latex_options) { |
newtux | d286706 | 2017-09-29 00:19:27 -0400 | [diff] [blame] | 410 | hold_position <- intersect(c("hold_position", "HOLD_position"), latex_options) |
Hao Zhu | 064990d | 2017-10-17 18:08:42 -0400 | [diff] [blame] | 411 | if (length(hold_position) == 0) hold_position <- "" |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 412 | switch( |
| 413 | position, |
| 414 | center = styling_latex_position_center(x, table_info, hold_position), |
| 415 | left = styling_latex_position_left(x, table_info), |
| 416 | right = styling_latex_position_right(x, table_info, hold_position), |
| 417 | float_left = styling_latex_position_float(x, table_info, "l"), |
| 418 | float_right = styling_latex_position_float(x, table_info, "r") |
| 419 | ) |
| 420 | } |
| 421 | |
| 422 | styling_latex_position_center <- function(x, table_info, hold_position) { |
| 423 | if (!table_info$table_env & table_info$tabular == "tabular") { |
newtux | d286706 | 2017-09-29 00:19:27 -0400 | [diff] [blame] | 424 | x <- paste0("\\begin{table}\n\\centering", x, "\n\\end{table}") |
| 425 | if (hold_position == "hold_position") { |
| 426 | x <- styling_latex_hold_position(x) |
| 427 | } else { |
| 428 | x <- styling_latex_HOLD_position(x) |
| 429 | } |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 430 | } |
| 431 | return(x) |
| 432 | } |
| 433 | |
| 434 | styling_latex_position_left <- function(x, table_info) { |
| 435 | if (table_info$tabular != "longtable") return(sub("\\\\centering\\n", "", x)) |
| 436 | longtable_option <- "\\[l\\]" |
| 437 | sub(paste0("\\\\begin\\{longtable\\}", table_info$valign2), |
| 438 | paste0("\\\\begin\\{longtable\\}", longtable_option), x) |
| 439 | } |
| 440 | |
| 441 | styling_latex_position_right <- function(x, table_info, hold_position) { |
| 442 | warning("Position = right is only supported for longtable in LaTeX. ", |
| 443 | "Setting back to center...") |
| 444 | styling_latex_position_center(x, table_info, hold_position) |
| 445 | } |
| 446 | |
| 447 | styling_latex_position_float <- function(x, table_info, option) { |
| 448 | if (table_info$tabular == "longtable") { |
| 449 | warning("wraptable is not supported for longtable.") |
| 450 | if (option == "l") return(styling_latex_position_left(x, table_info)) |
| 451 | if (option == "r") return(styling_latex_position_right(x, table_info, F)) |
| 452 | } |
Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 453 | size_matrix <- sapply(sapply(table_info$contents, str_split, " & "), nchar) |
| 454 | col_max_length <- apply(size_matrix, 1, max) + 4 |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 455 | if (table_info$table_env) { |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 456 | option <- sprintf("\\\\begin\\{wraptable\\}\\{%s\\}", option) |
| 457 | option <- paste0(option, "\\{",sum(col_max_length) * 0.15, "cm\\}") |
| 458 | x <- sub("\\\\begin\\{table\\}\\[\\!h\\]", "\\\\begin\\{table\\}", x) |
| 459 | x <- sub("\\\\begin\\{table\\}", option, x) |
| 460 | x <- sub("\\\\end\\{table\\}", "\\\\end\\{wraptable\\}", x) |
Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 461 | } else { |
| 462 | option <- sprintf("\\begin{wraptable}{%s}", option) |
| 463 | option <- paste0(option, "{",sum(col_max_length) * 0.15, "cm}") |
| 464 | x <- paste0(option, x, "\\end{wraptable}") |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 465 | } |
Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 466 | return(x) |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | styling_latex_font_size <- function(x, table_info, font_size) { |
| 470 | row_height <- font_size + 2 |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 471 | if (table_info$tabular != "longtable" & table_info$table_env) { |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 472 | return(sub(table_info$begin_tabular, |
| 473 | paste0("\\\\fontsize\\{", font_size, "\\}\\{", row_height, |
| 474 | "\\}\\\\selectfont\n", table_info$begin_tabular), |
| 475 | x)) |
| 476 | } |
| 477 | # For longtable and tabular without table environment. Simple wrap around |
| 478 | # fontsize is good enough |
| 479 | return(paste0( |
| 480 | "\\begingroup\\fontsize{", font_size, "}{", row_height, "}\\selectfont\n", x, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 481 | "\\endgroup{}" |
Hao Zhu | a3fc0c4 | 2017-02-27 12:04:59 -0500 | [diff] [blame] | 482 | )) |
| 483 | } |
Hao Zhu | f2dfd14 | 2017-07-24 14:43:28 -0400 | [diff] [blame] | 484 | |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 485 | styling_latex_table_env <- function(x, current_env, latex_table_env) { |
Hao Zhu | 3af9f94 | 2017-09-07 12:30:21 -0400 | [diff] [blame] | 486 | x <- sub( |
| 487 | paste0("begin\\{", current_env, "\\}\\[t\\]"), |
| 488 | paste0("begin\\{", latex_table_env, "\\}"), x |
| 489 | ) |
| 490 | x <- sub( |
| 491 | paste0("begin\\{", current_env, "\\}"), |
| 492 | paste0("begin\\{", latex_table_env, "\\}"), x |
| 493 | ) |
| 494 | x <- sub( |
| 495 | paste0("end\\{", current_env, "\\}"), |
| 496 | paste0("end\\{", latex_table_env, "\\}"), x |
| 497 | ) |
| 498 | return(x) |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 499 | } |
Hao Zhu | f2dfd14 | 2017-07-24 14:43:28 -0400 | [diff] [blame] | 500 | |