blob: 5e4aff8645748f8c69e12a649b18f79d9098b79a [file] [log] [blame]
Hao Zhue10cfd32017-02-21 16:41:14 -05001#' HTML table attributes
2#'
Hao Zhu26234122017-02-22 15:34:33 -05003#' @description This function provides a cleaner approach to modify the style
Hao Zhue7c8f702017-10-10 13:22:59 -04004#' 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 Zhue10cfd32017-02-21 16:41:14 -05007#'
Hao Zhuf7994dd2017-02-27 16:58:42 -05008#' @param kable_input Output of `knitr::kable()` with `format` specified
9#' @param bootstrap_options A character vector for bootstrap table options.
Hao Zhu6a076462017-03-01 12:59:01 -050010#' Please see package vignette or visit the w3schools'
Hao Zhuf7994dd2017-02-27 16:58:42 -050011#' \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 Zhu6a076462017-03-01 12:59:01 -050015#' package vignette for more information. Possible options include
Rob Shepherdc59d15e2017-08-26 16:06:36 +010016#' `basic`, `striped`, `hold_position`, `HOLD_position`, `scale_down` & `repeat_header`.
Hao Zhu971d89f2017-06-07 19:22:47 -040017#' `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 Zhu53e240f2017-09-04 20:04:29 -040022#' A stronger version: `HOLD_position` requires the `float` package and specifies `[H]`.
Hao Zhuf7994dd2017-02-27 16:58:42 -050023#' `scale_down` is useful for super wide table. It will automatically adjust
Hao Zhu971d89f2017-06-07 19:22:47 -040024#' 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
Salzerc53f0cd2018-02-23 06:38:34 -050026#' table.
Hao Zhu59f5fe02017-02-22 11:27:14 -050027#' @param full_width A `TRUE` or `FALSE` variable controlling whether the HTML
Hao Zhuf7994dd2017-02-27 16:58:42 -050028#' table should have 100\% width. Since HTML and pdf have different flavors on
29#' the preferable format for `full_width`. If not specified, a HTML table will
30#' have full width by default but this option will be set to `FALSE` for a
31#' LaTeX table
32#' @param position A character string determining how to position the table
33#' on a page. Possible values include `left`, `center`, `right`, `float_left`
34#' and `float_right`. Please see the package doc site for demonstrations. For
35#' a `LaTeX` table, if `float_*` is selected, `LaTeX` package `wrapfig` will be
36#' imported.
Hao Zhu94956582017-02-21 18:18:29 -050037#' @param font_size A numeric input for table font size
Salzerc53f0cd2018-02-23 06:38:34 -050038#' @param row_label_position A character string determining the justification of the row
39#' labels in a table. Possible values inclued `l` for left, `c` for center, and `r` for
40#' right. The default value is `l` for left justifcation.
Hao Zhue1be9602017-08-17 15:44:31 -040041#' @param ... extra options for HTML or LaTeX. See `details`.
42#'
43#' @details For LaTeX, extra options includes:
44#' - `repeat_header_method` can either be `append`(default) or `replace`
45#' - `repeat_header_text` is just a text string you want to append on or
46#' replace the caption.
Hao Zhu71a224f2017-08-18 11:06:22 -040047#' - `stripe_color` allows users to pick a different color for their strip lines.
Hao Zhu245931c2017-09-01 22:43:56 -040048#' - `latex_table_env` character string to define customized table environment
49#' such as tabu or tabularx.You shouldn't expect all features could be
50#' supported in self-defined environments.
Hao Zhue10cfd32017-02-21 16:41:14 -050051#'
Hao Zhu78e61222017-05-24 20:53:35 -040052#' @examples x_html <- knitr::kable(head(mtcars), "html")
53#' kable_styling(x_html, "striped", position = "left", font_size = 7)
54#'
55#' x_latex <- knitr::kable(head(mtcars), "latex")
56#' kable_styling(x_latex, latex_options = "striped", position = "float_left")
57#'
Hao Zhue10cfd32017-02-21 16:41:14 -050058#' @export
Hao Zhuc1f38412017-02-23 12:13:48 -050059kable_styling <- function(kable_input,
60 bootstrap_options = "basic",
Hao Zhuc05e1812017-02-25 01:45:35 -050061 latex_options = "basic",
62 full_width = NULL,
Hao Zhu9b45a182017-02-27 18:17:46 -050063 position = "center",
Hao Zhua31e97f2017-06-08 14:55:41 -040064 font_size = NULL,
Salzerc53f0cd2018-02-23 06:38:34 -050065 row_label_position = "l",
Hao Zhua31e97f2017-06-08 14:55:41 -040066 ...) {
Hao Zhu9b45a182017-02-27 18:17:46 -050067
68 if (length(bootstrap_options) == 1 && bootstrap_options == "basic") {
69 bootstrap_options <- getOption("kable_styling_bootstrap_options", "basic")
70 }
71 if (length(latex_options) == 1 && latex_options == "basic") {
72 latex_options <- getOption("kable_styling_latex_options", "basic")
73 }
74 if (position == "center") {
75 position <- getOption("kable_styling_position", "center")
76 }
77 position <- match.arg(position,
78 c("center", "left", "right", "float_left", "float_right"))
79 if (is.null(font_size)) {
80 font_size <- getOption("kable_styling_font_size", NULL)
81 }
82
Hao Zhuc1f38412017-02-23 12:13:48 -050083 kable_format <- attr(kable_input, "format")
Hao Zhu9b45a182017-02-27 18:17:46 -050084
Hao Zhuc1f38412017-02-23 12:13:48 -050085 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050086 warning("Please specify format in kable. kableExtra can customize either ",
87 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
88 "for details.")
89 return(kable_input)
Hao Zhuc1f38412017-02-23 12:13:48 -050090 }
91 if (kable_format == "html") {
Hao Zhu9b45a182017-02-27 18:17:46 -050092 if (is.null(full_width)) {
93 full_width <- getOption("kable_styling_full_width", T)
94 }
Salzerc53f0cd2018-02-23 06:38:34 -050095 if(!missing(row_label_position)) {
96 warning("'row_label_position' is not active for HTML tables yet and parameter will not be used.")
97 }
Hao Zhuc1f38412017-02-23 12:13:48 -050098 return(htmlTable_styling(kable_input,
99 bootstrap_options = bootstrap_options,
100 full_width = full_width,
Hao Zhuc05e1812017-02-25 01:45:35 -0500101 position = position,
Hao Zhua31e97f2017-06-08 14:55:41 -0400102 font_size = font_size, ...))
Hao Zhuc1f38412017-02-23 12:13:48 -0500103 }
104 if (kable_format == "latex") {
Hao Zhu9b45a182017-02-27 18:17:46 -0500105 if (is.null(full_width)) {
106 full_width <- getOption("kable_styling_full_width", F)
107 }
Hao Zhuc05e1812017-02-25 01:45:35 -0500108 return(pdfTable_styling(kable_input,
109 latex_options = latex_options,
110 full_width = full_width,
111 position = position,
Salzerc53f0cd2018-02-23 06:38:34 -0500112 font_size = font_size,
113 row_label_position = row_label_position,
114 ...))
Hao Zhuc1f38412017-02-23 12:13:48 -0500115 }
116}
117
118# htmlTable Styling ------------
Hao Zhu26234122017-02-22 15:34:33 -0500119htmlTable_styling <- function(kable_input,
120 bootstrap_options = "basic",
121 full_width = T,
Hao Zhuc05e1812017-02-25 01:45:35 -0500122 position = c("center", "left", "right",
123 "float_left", "float_right"),
Hao Zhu26234122017-02-22 15:34:33 -0500124 font_size = NULL) {
Hao Zhu909ea382017-06-12 15:43:47 -0400125 kable_attrs <- attributes(kable_input)
Hao Zhu9bab1532017-07-24 15:08:41 -0400126 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhu26234122017-02-22 15:34:33 -0500127
128 # Modify class
Hao Zhue10cfd32017-02-21 16:41:14 -0500129 bootstrap_options <- match.arg(
130 bootstrap_options,
Hao Zhu26234122017-02-22 15:34:33 -0500131 c("basic", "striped", "bordered", "hover", "condensed", "responsive"),
Hao Zhue10cfd32017-02-21 16:41:14 -0500132 several.ok = T
133 )
134
Hao Zhu26234122017-02-22 15:34:33 -0500135 kable_xml_class <- NULL
136 if (xml_has_attr(kable_xml, "class")) {
137 kable_xml_class <- xml_attr(kable_xml, "class")
Hao Zhue10cfd32017-02-21 16:41:14 -0500138 }
Hao Zhu26234122017-02-22 15:34:33 -0500139 if (length(bootstrap_options) == 1 && bootstrap_options == "basic") {
140 bootstrap_options <- "table"
141 } else {
142 bootstrap_options <- bootstrap_options[bootstrap_options != "basic"]
143 bootstrap_options <- paste0("table-", bootstrap_options)
144 bootstrap_options <- c("table", bootstrap_options)
145 }
146 xml_attr(kable_xml, "class") <- paste(c(kable_xml_class, bootstrap_options),
147 collapse = " ")
Hao Zhue10cfd32017-02-21 16:41:14 -0500148
Hao Zhu26234122017-02-22 15:34:33 -0500149 # Modify style
150 kable_xml_style <- NULL
151 if (xml_has_attr(kable_xml, "style")) {
152 kable_xml_style <- xml_attr(kable_xml, "style")
153 }
Hao Zhue10cfd32017-02-21 16:41:14 -0500154 if (!is.null(font_size)) {
Hao Zhu26234122017-02-22 15:34:33 -0500155 kable_xml_style <- c(kable_xml_style,
Hao Zhuc1f38412017-02-23 12:13:48 -0500156 paste0("font-size: ", font_size, "px;"))
Hao Zhufc14c9b2017-05-22 14:03:22 -0400157 kable_caption_node <- xml_tpart(kable_xml, "caption")
158 if (!is.null(kable_caption_node)) {
159 xml_attr(kable_caption_node, "style") <- "font-size: initial !important;"
160 }
Hao Zhue10cfd32017-02-21 16:41:14 -0500161 }
162 if (!full_width) {
Hao Zhu26234122017-02-22 15:34:33 -0500163 kable_xml_style <- c(kable_xml_style, "width: auto !important;")
Hao Zhue10cfd32017-02-21 16:41:14 -0500164 }
Hao Zhu94956582017-02-21 18:18:29 -0500165
Hao Zhuc05e1812017-02-25 01:45:35 -0500166 position <- match.arg(position)
167 position_style <- switch(
168 position,
169 center = "margin-left: auto; margin-right: auto;",
Hao Zhufd516ba2017-07-28 14:30:25 -0400170 left = "",
Hao Zhuc05e1812017-02-25 01:45:35 -0500171 right = "margin-right: 0; margin-left: auto",
172 float_left = "float: left; margin-right: 10px;",
173 float_right = "float: right; margin-left: 10px;"
174 )
175 kable_xml_style <- c(kable_xml_style, position_style)
176
Hao Zhu26234122017-02-22 15:34:33 -0500177 if (length(kable_xml_style) != 0) {
178 xml_attr(kable_xml, "style") <- paste(kable_xml_style, collapse = " ")
Hao Zhue10cfd32017-02-21 16:41:14 -0500179 }
Hao Zhu9b45a182017-02-27 18:17:46 -0500180
Hao Zhuf2dfd142017-07-24 14:43:28 -0400181 out <- as_kable_xml(kable_xml)
Hao Zhu909ea382017-06-12 15:43:47 -0400182 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -0500183 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhu9b45a182017-02-27 18:17:46 -0500184 return(out)
Hao Zhue10cfd32017-02-21 16:41:14 -0500185}
Hao Zhuc1f38412017-02-23 12:13:48 -0500186
187# LaTeX table style
188pdfTable_styling <- function(kable_input,
Hao Zhuc05e1812017-02-25 01:45:35 -0500189 latex_options = "basic",
190 full_width = F,
191 position = c("center", "left", "right",
Hao Zhua3fc0c42017-02-27 12:04:59 -0500192 "float_left", "float_right"),
Hao Zhua31e97f2017-06-08 14:55:41 -0400193 font_size = NULL,
Hao Zhuca211db2017-07-25 00:06:43 -0400194 repeat_header_text = "\\textit{(continued)}",
Hao Zhue1be9602017-08-17 15:44:31 -0400195 repeat_header_method = c("append", "replace"),
Hao Zhu6c9714a2017-10-02 14:52:45 -0400196 repeat_header_continued = FALSE,
Hao Zhu245931c2017-09-01 22:43:56 -0400197 stripe_color = "gray!6",
Salzerc53f0cd2018-02-23 06:38:34 -0500198 latex_table_env = NULL,
199 row_label_position) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500200
Hao Zhuc05e1812017-02-25 01:45:35 -0500201 latex_options <- match.arg(
202 latex_options,
Salzerc53f0cd2018-02-23 06:38:34 -0500203 c("basic", "striped", "hold_position", "HOLD_position", "scale_down", "repeat_header"),
Hao Zhuc05e1812017-02-25 01:45:35 -0500204 several.ok = T
205 )
206
Hao Zhuca211db2017-07-25 00:06:43 -0400207 repeat_header_method <- match.arg(repeat_header_method)
208
Hao Zhua3fc0c42017-02-27 12:04:59 -0500209 out <- NULL
Hao Zhud2c0f732017-08-26 10:40:14 -0400210 out <- enc2utf8(as.character(kable_input))
Hao Zhuc05e1812017-02-25 01:45:35 -0500211 table_info <- magic_mirror(kable_input)
Hao Zhuc05e1812017-02-25 01:45:35 -0500212
213 if ("striped" %in% latex_options) {
Hao Zhu71a224f2017-08-18 11:06:22 -0400214 out <- styling_latex_striped(out, table_info, stripe_color)
Hao Zhuc05e1812017-02-25 01:45:35 -0500215 }
216
217 # hold_position is only meaningful in a table environment
218 if ("hold_position" %in% latex_options & table_info$table_env) {
Hao Zhua3fc0c42017-02-27 12:04:59 -0500219 out <- styling_latex_hold_position(out)
Hao Zhuc05e1812017-02-25 01:45:35 -0500220 }
221
Rob Shepherdc59d15e2017-08-26 16:06:36 +0100222 # HOLD_position is only meaningful in a table environment
223 if ("HOLD_position" %in% latex_options & table_info$table_env) {
224 out <- styling_latex_HOLD_position(out)
225 }
226
Hao Zhua3fc0c42017-02-27 12:04:59 -0500227 if ("scale_down" %in% latex_options) {
228 out <- styling_latex_scale_down(out, table_info)
Hao Zhuc05e1812017-02-25 01:45:35 -0500229 }
230
Hao Zhu971d89f2017-06-07 19:22:47 -0400231 if ("repeat_header" %in% latex_options & table_info$tabular == "longtable") {
Hao Zhuca211db2017-07-25 00:06:43 -0400232 out <- styling_latex_repeat_header(out, table_info, repeat_header_text,
Hao Zhu6c9714a2017-10-02 14:52:45 -0400233 repeat_header_method, repeat_header_continued)
Hao Zhu971d89f2017-06-07 19:22:47 -0400234 }
235
Hao Zhuc05e1812017-02-25 01:45:35 -0500236 if (full_width) {
Hao Zhu245931c2017-09-01 22:43:56 -0400237 latex_table_env <- ifelse(table_info$tabular == "longtable",
238 "longtabu", "tabu")
239 full_width_return <- styling_latex_full_width(out, table_info)
240 out <- full_width_return[[1]]
241 table_info$align_vector <- full_width_return[[2]]
Hao Zhua3fc0c42017-02-27 12:04:59 -0500242 }
Hao Zhuc05e1812017-02-25 01:45:35 -0500243
Hao Zhua3fc0c42017-02-27 12:04:59 -0500244 if (!is.null(font_size)) {
245 out <- styling_latex_font_size(out, table_info, font_size)
Hao Zhuc05e1812017-02-25 01:45:35 -0500246 }
247
Hao Zhu245931c2017-09-01 22:43:56 -0400248 if (!is.null(latex_table_env)) {
249 out <- styling_latex_table_env(out, table_info$tabular, latex_table_env)
250 table_info$tabular <- latex_table_env
251 table_info$begin_tabular <- sub("tabular", latex_table_env,
252 table_info$begin_tabular)
253 table_info$end_tabular <- sub("tabular", latex_table_env,
254 table_info$end_tabular)
255 }
256
Hao Zhuc05e1812017-02-25 01:45:35 -0500257 position <- match.arg(position)
Hao Zhua3fc0c42017-02-27 12:04:59 -0500258 out <- styling_latex_position(out, table_info, position, latex_options)
Hao Zhuc05e1812017-02-25 01:45:35 -0500259
260 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhu32f43f72017-06-20 18:24:54 -0400261 attr(out, "kable_meta") <- table_info
bsalzer74e2e222018-02-12 17:23:12 -0500262
Salzerc53f0cd2018-02-23 06:38:34 -0500263 if (row_label_position != "l") {
bsalzer74e2e222018-02-12 17:23:12 -0500264 if(table_info$tabular=="longtable") {
265 out <- sub("\\\\begin\\{longtable\\}\\{l",
bsalzer86692132018-02-13 19:50:05 -0500266 paste0("\\\\begin\\{longtable\\}\\{",
Salzerc53f0cd2018-02-23 06:38:34 -0500267 row_label_position),
bsalzer74e2e222018-02-12 17:23:12 -0500268 out)
269 } else {
270 out <- sub("\\\\begin\\{tabular\\}\\{l",
bsalzer86692132018-02-13 19:50:05 -0500271 paste0("\\\\begin\\{tabular\\}\\{",
Salzerc53f0cd2018-02-23 06:38:34 -0500272 row_label_position),
bsalzer74e2e222018-02-12 17:23:12 -0500273 out)
274 }
275 }
276
Hao Zhuc05e1812017-02-25 01:45:35 -0500277 return(out)
Hao Zhuc1f38412017-02-23 12:13:48 -0500278}
Hao Zhua3fc0c42017-02-27 12:04:59 -0500279
Hao Zhue1be9602017-08-17 15:44:31 -0400280styling_latex_striped <- function(x, table_info, color) {
Hao Zhu7d4a3e32017-06-08 21:29:13 -0400281 # gray!6 is the same as shadecolor ({RGB}{248, 248, 248}) in pdf_document
282 if (table_info$tabular == "longtable" & !is.na(table_info$caption)) {
Hao Zhue1be9602017-08-17 15:44:31 -0400283 row_color <- sprintf("\\rowcolors{2}{white}{%s}", color)
Hao Zhu7d4a3e32017-06-08 21:29:13 -0400284 } else {
Hao Zhue1be9602017-08-17 15:44:31 -0400285 row_color <- sprintf("\\rowcolors{2}{%s}{white}", color)
Hao Zhu7d4a3e32017-06-08 21:29:13 -0400286 }
Hao Zhu00ba87c2017-08-01 12:42:58 -0400287
288 x <- read_lines(x)
289 if (table_info$booktabs) {
290 header_rows_start <- which(x == "\\toprule")[1]
291 header_rows_end <- which(x == "\\midrule")[1]
292 } else {
293 header_rows_start <- which(x == "\\hline")[1]
294 header_rows_end <- which(x == "\\hline")[2]
295 }
296
297 x <- c(
298 row_color,
299 x[1:(header_rows_start - 1)],
300 "\\hiderowcolors",
301 x[header_rows_start:header_rows_end],
302 "\\showrowcolors",
303 x[(header_rows_end + 1):length(x)],
304 "\\rowcolors{2}{white}{white}"
305 )
306 x <- paste0(x, collapse = "\n")
307 return(x)
Hao Zhua3fc0c42017-02-27 12:04:59 -0500308}
309
310styling_latex_hold_position <- function(x) {
Hao Zhu164c48d2018-03-19 15:46:51 -0400311 if (str_detect(x, "\\\\begin\\{table\\}\\[t\\]")) {
312 str_replace(x, "\\\\begin\\{table\\}\\[t\\]", "\\\\begin\\{table\\}[!h]")
313 } else {
314 str_replace(x, "\\\\begin\\{table\\}", "\\\\begin\\{table\\}[!h]")
315 }
Hao Zhua3fc0c42017-02-27 12:04:59 -0500316}
317
Rob Shepherdc59d15e2017-08-26 16:06:36 +0100318styling_latex_HOLD_position <- function(x) {
Hao Zhu164c48d2018-03-19 15:46:51 -0400319 if (str_detect(x, "\\\\begin\\{table\\}\\[t\\]")) {
320 str_replace(x, "\\\\begin\\{table\\}\\[t\\]", "\\\\begin\\{table\\}[H]")
321 } else {
322 str_replace(x, "\\\\begin\\{table\\}", "\\\\begin\\{table\\}[H]")
323 }
Rob Shepherdc59d15e2017-08-26 16:06:36 +0100324}
325
Hao Zhua3fc0c42017-02-27 12:04:59 -0500326styling_latex_scale_down <- function(x, table_info) {
327 # You cannot put longtable in a resizebox
328 # http://tex.stackexchange.com/questions/83457/how-to-resize-or-scale-a-longtable-revised
329 if (table_info$tabular == "longtable") {
330 warning("Longtable cannot be resized.")
331 return(x)
332 }
333 x <- sub(table_info$begin_tabular,
Hao Zhucc21dc72017-05-20 01:15:25 -0400334 paste0("\\\\resizebox\\{\\\\linewidth\\}\\{\\!\\}\\{",
Hao Zhua3fc0c42017-02-27 12:04:59 -0500335 table_info$begin_tabular),
336 x)
337 sub(table_info$end_tabular, paste0(table_info$end_tabular, "\\}"), x)
338}
339
Hao Zhuca211db2017-07-25 00:06:43 -0400340styling_latex_repeat_header <- function(x, table_info, repeat_header_text,
Hao Zhu6c9714a2017-10-02 14:52:45 -0400341 repeat_header_method,
342 repeat_header_continued) {
Hao Zhua31e97f2017-06-08 14:55:41 -0400343 x <- read_lines(x)
344 if (table_info$booktabs) {
345 header_rows_start <- which(x == "\\toprule")[1]
346 header_rows_end <- which(x == "\\midrule")[1]
347 } else {
348 header_rows_start <- which(x == "\\hline")[1]
349 header_rows_end <- which(x == "\\hline")[2]
350 }
Hao Zhufdec1842017-06-08 17:06:04 -0400351
352 if (is.na(table_info$caption)) {
353 continue_line <- paste0(
354 "\\multicolumn{", table_info$ncol, "}{@{}l}{", repeat_header_text,
355 "}\\\\"
356 )
357 } else {
Hao Zhuca211db2017-07-25 00:06:43 -0400358 if (repeat_header_method == "append") {
Hao Zhufd2ef9b2017-07-25 13:14:18 -0400359 caption_without_lab <- sub("\\\\label\\{[^\\}]*\\}", "", table_info$caption)
Hao Zhu6f95ea42017-07-25 13:12:12 -0400360 repeat_header_text <- paste(caption_without_lab, repeat_header_text)
Hao Zhuca211db2017-07-25 00:06:43 -0400361 }
Hao Zhu68d4fe92017-07-25 14:07:50 -0400362 continue_line <- paste0("\\caption[]{", repeat_header_text, "}\\\\")
Hao Zhufdec1842017-06-08 17:06:04 -0400363 }
364
Hao Zhu6c9714a2017-10-02 14:52:45 -0400365 if (!table_info$booktabs) {
366 bottom_part <- NULL
367 } else {
368 index_bottomrule <- which(x == "\\bottomrule")
369 x <- x[-index_bottomrule]
Hao Zhu20784e72017-10-10 14:48:33 -0400370 x[index_bottomrule - 1] <- paste0(x[index_bottomrule - 1], "*")
Hao Zhu6c9714a2017-10-02 14:52:45 -0400371
372 if (repeat_header_continued == FALSE) {
Hao Zhu44f6c492017-10-20 23:05:37 -0400373 bottom_part <- "\\\n\\endfoot\n\\bottomrule\n\\endlastfoot"
Hao Zhu6c9714a2017-10-02 14:52:45 -0400374 } else {
375 if (repeat_header_continued == TRUE) {
Hao Zhub7f4f4e2017-10-02 14:58:41 -0400376 bottom_text <- "\\textit{(continued \\ldots)}"
Hao Zhu6c9714a2017-10-02 14:52:45 -0400377 } else {
378 bottom_text <- repeat_header_continued
379 }
380 bottom_part <- paste0(
Hao Zhu44f6c492017-10-20 23:05:37 -0400381 "\\midrule\n",
Hao Zhub7f4f4e2017-10-02 14:58:41 -0400382 "\\multicolumn{", table_info$ncol, "}{r@{}}{", bottom_text, "}\\\n",
Hao Zhu6c9714a2017-10-02 14:52:45 -0400383 "\\endfoot\n",
Hao Zhuc83eb632017-10-10 14:11:08 -0400384 "\\bottomrule\n",
Hao Zhu6c9714a2017-10-02 14:52:45 -0400385 "\\endlastfoot"
386 )
387 }
388 }
389
390 # x[index_bottomrule - 1] <- paste0(x[index_bottomrule - 1], "*\\bottomrule")
Hao Zhua31e97f2017-06-08 14:55:41 -0400391 x <- c(
392 x[1:header_rows_end],
393 "\\endfirsthead",
394 continue_line,
395 x[header_rows_start:header_rows_end],
396 "\\endhead",
Hao Zhu6c9714a2017-10-02 14:52:45 -0400397 bottom_part,
Hao Zhua31e97f2017-06-08 14:55:41 -0400398 x[(header_rows_end + 1):length(x)]
399 )
400 x <- paste0(x, collapse = "\n")
401 return(x)
Hao Zhu971d89f2017-06-07 19:22:47 -0400402}
403
Hao Zhua3fc0c42017-02-27 12:04:59 -0500404styling_latex_full_width <- function(x, table_info) {
Hao Zhu245931c2017-09-01 22:43:56 -0400405 col_align <- as.character(factor(
406 table_info$align_vector, c("c", "l", "r"),
407 c(">{\\\\centering}X", ">{\\\\raggedright}X", ">{\\\\raggedleft}X")
408 ))
409 col_align[is.na(col_align)] <- table_info$align_vector[is.na(col_align)]
410 col_align_vector <- col_align
411 col_align <- paste0(" to \\\\linewidth {", paste(col_align, collapse = ""), "}")
Hao Zhua3fc0c42017-02-27 12:04:59 -0500412 x <- sub(paste0(table_info$begin_tabular, "\\{[^\\\\n]*\\}"),
413 table_info$begin_tabular, x)
Hao Zhu245931c2017-09-01 22:43:56 -0400414 x <- sub(table_info$begin_tabular,
Hao Zhua3fc0c42017-02-27 12:04:59 -0500415 paste0(table_info$begin_tabular, col_align), x)
Hao Zhu245931c2017-09-01 22:43:56 -0400416 return(list(x, col_align_vector))
Hao Zhua3fc0c42017-02-27 12:04:59 -0500417}
418
419styling_latex_position <- function(x, table_info, position, latex_options) {
newtuxd2867062017-09-29 00:19:27 -0400420 hold_position <- intersect(c("hold_position", "HOLD_position"), latex_options)
Hao Zhu064990d2017-10-17 18:08:42 -0400421 if (length(hold_position) == 0) hold_position <- ""
Hao Zhua3fc0c42017-02-27 12:04:59 -0500422 switch(
423 position,
424 center = styling_latex_position_center(x, table_info, hold_position),
425 left = styling_latex_position_left(x, table_info),
426 right = styling_latex_position_right(x, table_info, hold_position),
427 float_left = styling_latex_position_float(x, table_info, "l"),
428 float_right = styling_latex_position_float(x, table_info, "r")
429 )
430}
431
432styling_latex_position_center <- function(x, table_info, hold_position) {
433 if (!table_info$table_env & table_info$tabular == "tabular") {
newtuxd2867062017-09-29 00:19:27 -0400434 x <- paste0("\\begin{table}\n\\centering", x, "\n\\end{table}")
435 if (hold_position == "hold_position") {
436 x <- styling_latex_hold_position(x)
437 } else {
438 x <- styling_latex_HOLD_position(x)
439 }
Hao Zhua3fc0c42017-02-27 12:04:59 -0500440 }
441 return(x)
442}
443
444styling_latex_position_left <- function(x, table_info) {
445 if (table_info$tabular != "longtable") return(sub("\\\\centering\\n", "", x))
446 longtable_option <- "\\[l\\]"
447 sub(paste0("\\\\begin\\{longtable\\}", table_info$valign2),
448 paste0("\\\\begin\\{longtable\\}", longtable_option), x)
449}
450
451styling_latex_position_right <- function(x, table_info, hold_position) {
452 warning("Position = right is only supported for longtable in LaTeX. ",
453 "Setting back to center...")
454 styling_latex_position_center(x, table_info, hold_position)
455}
456
457styling_latex_position_float <- function(x, table_info, option) {
458 if (table_info$tabular == "longtable") {
459 warning("wraptable is not supported for longtable.")
460 if (option == "l") return(styling_latex_position_left(x, table_info))
461 if (option == "r") return(styling_latex_position_right(x, table_info, F))
462 }
Hao Zhuf7994dd2017-02-27 16:58:42 -0500463 size_matrix <- sapply(sapply(table_info$contents, str_split, " & "), nchar)
464 col_max_length <- apply(size_matrix, 1, max) + 4
Hao Zhua3fc0c42017-02-27 12:04:59 -0500465 if (table_info$table_env) {
Hao Zhua3fc0c42017-02-27 12:04:59 -0500466 option <- sprintf("\\\\begin\\{wraptable\\}\\{%s\\}", option)
467 option <- paste0(option, "\\{",sum(col_max_length) * 0.15, "cm\\}")
468 x <- sub("\\\\begin\\{table\\}\\[\\!h\\]", "\\\\begin\\{table\\}", x)
469 x <- sub("\\\\begin\\{table\\}", option, x)
470 x <- sub("\\\\end\\{table\\}", "\\\\end\\{wraptable\\}", x)
Hao Zhuf7994dd2017-02-27 16:58:42 -0500471 } else {
472 option <- sprintf("\\begin{wraptable}{%s}", option)
473 option <- paste0(option, "{",sum(col_max_length) * 0.15, "cm}")
474 x <- paste0(option, x, "\\end{wraptable}")
Hao Zhua3fc0c42017-02-27 12:04:59 -0500475 }
Hao Zhuf7994dd2017-02-27 16:58:42 -0500476 return(x)
Hao Zhua3fc0c42017-02-27 12:04:59 -0500477}
478
479styling_latex_font_size <- function(x, table_info, font_size) {
480 row_height <- font_size + 2
Hao Zhu245931c2017-09-01 22:43:56 -0400481 if (table_info$tabular != "longtable" & table_info$table_env) {
Hao Zhua3fc0c42017-02-27 12:04:59 -0500482 return(sub(table_info$begin_tabular,
483 paste0("\\\\fontsize\\{", font_size, "\\}\\{", row_height,
484 "\\}\\\\selectfont\n", table_info$begin_tabular),
485 x))
486 }
487 # For longtable and tabular without table environment. Simple wrap around
488 # fontsize is good enough
489 return(paste0(
490 "\\begingroup\\fontsize{", font_size, "}{", row_height, "}\\selectfont\n", x,
Hao Zhu6f362bb2017-10-23 23:21:38 -0400491 "\\endgroup{}"
Hao Zhua3fc0c42017-02-27 12:04:59 -0500492 ))
493}
Hao Zhuf2dfd142017-07-24 14:43:28 -0400494
Hao Zhu245931c2017-09-01 22:43:56 -0400495styling_latex_table_env <- function(x, current_env, latex_table_env) {
Hao Zhu3af9f942017-09-07 12:30:21 -0400496 x <- sub(
497 paste0("begin\\{", current_env, "\\}\\[t\\]"),
498 paste0("begin\\{", latex_table_env, "\\}"), x
499 )
500 x <- sub(
501 paste0("begin\\{", current_env, "\\}"),
502 paste0("begin\\{", latex_table_env, "\\}"), x
503 )
504 x <- sub(
505 paste0("end\\{", current_env, "\\}"),
506 paste0("end\\{", latex_table_env, "\\}"), x
507 )
508 return(x)
Hao Zhu245931c2017-09-01 22:43:56 -0400509}
Hao Zhuf2dfd142017-07-24 14:43:28 -0400510