blob: 4a3850c413ceab0d737a3608eaed858ae72d9fe3 [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
26#' 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
Hao Zhue1be9602017-08-17 15:44:31 -040038#' @param ... extra options for HTML or LaTeX. See `details`.
39#'
40#' @details For LaTeX, extra options includes:
41#' - `repeat_header_method` can either be `append`(default) or `replace`
42#' - `repeat_header_text` is just a text string you want to append on or
43#' replace the caption.
Hao Zhu71a224f2017-08-18 11:06:22 -040044#' - `stripe_color` allows users to pick a different color for their strip lines.
Hao Zhu245931c2017-09-01 22:43:56 -040045#' - `latex_table_env` character string to define customized table environment
46#' such as tabu or tabularx.You shouldn't expect all features could be
47#' supported in self-defined environments.
Hao Zhue10cfd32017-02-21 16:41:14 -050048#'
Hao Zhu78e61222017-05-24 20:53:35 -040049#' @examples x_html <- knitr::kable(head(mtcars), "html")
50#' kable_styling(x_html, "striped", position = "left", font_size = 7)
51#'
52#' x_latex <- knitr::kable(head(mtcars), "latex")
53#' kable_styling(x_latex, latex_options = "striped", position = "float_left")
54#'
Hao Zhue10cfd32017-02-21 16:41:14 -050055#' @export
Hao Zhuc1f38412017-02-23 12:13:48 -050056kable_styling <- function(kable_input,
57 bootstrap_options = "basic",
Hao Zhuc05e1812017-02-25 01:45:35 -050058 latex_options = "basic",
59 full_width = NULL,
Hao Zhu9b45a182017-02-27 18:17:46 -050060 position = "center",
Hao Zhua31e97f2017-06-08 14:55:41 -040061 font_size = NULL,
62 ...) {
Hao Zhu9b45a182017-02-27 18:17:46 -050063
64 if (length(bootstrap_options) == 1 && bootstrap_options == "basic") {
65 bootstrap_options <- getOption("kable_styling_bootstrap_options", "basic")
66 }
67 if (length(latex_options) == 1 && latex_options == "basic") {
68 latex_options <- getOption("kable_styling_latex_options", "basic")
69 }
70 if (position == "center") {
71 position <- getOption("kable_styling_position", "center")
72 }
73 position <- match.arg(position,
74 c("center", "left", "right", "float_left", "float_right"))
75 if (is.null(font_size)) {
76 font_size <- getOption("kable_styling_font_size", NULL)
77 }
78
Hao Zhuc1f38412017-02-23 12:13:48 -050079 kable_format <- attr(kable_input, "format")
Hao Zhu9b45a182017-02-27 18:17:46 -050080
Hao Zhuc1f38412017-02-23 12:13:48 -050081 if (!kable_format %in% c("html", "latex")) {
guangchuang yu9c405392017-04-29 12:34:04 +080082 message("Currently generic markdown table using pandoc is not supported.")
83 return(kable_input)
Hao Zhuc1f38412017-02-23 12:13:48 -050084 }
85 if (kable_format == "html") {
Hao Zhu9b45a182017-02-27 18:17:46 -050086 if (is.null(full_width)) {
87 full_width <- getOption("kable_styling_full_width", T)
88 }
Hao Zhuc1f38412017-02-23 12:13:48 -050089 return(htmlTable_styling(kable_input,
90 bootstrap_options = bootstrap_options,
91 full_width = full_width,
Hao Zhuc05e1812017-02-25 01:45:35 -050092 position = position,
Hao Zhua31e97f2017-06-08 14:55:41 -040093 font_size = font_size, ...))
Hao Zhuc1f38412017-02-23 12:13:48 -050094 }
95 if (kable_format == "latex") {
Hao Zhu9b45a182017-02-27 18:17:46 -050096 if (is.null(full_width)) {
97 full_width <- getOption("kable_styling_full_width", F)
98 }
Hao Zhuc05e1812017-02-25 01:45:35 -050099 return(pdfTable_styling(kable_input,
100 latex_options = latex_options,
101 full_width = full_width,
102 position = position,
Hao Zhua31e97f2017-06-08 14:55:41 -0400103 font_size = font_size, ...))
Hao Zhuc1f38412017-02-23 12:13:48 -0500104 }
105}
106
107# htmlTable Styling ------------
Hao Zhu26234122017-02-22 15:34:33 -0500108htmlTable_styling <- function(kable_input,
109 bootstrap_options = "basic",
110 full_width = T,
Hao Zhuc05e1812017-02-25 01:45:35 -0500111 position = c("center", "left", "right",
112 "float_left", "float_right"),
Hao Zhu26234122017-02-22 15:34:33 -0500113 font_size = NULL) {
Hao Zhu909ea382017-06-12 15:43:47 -0400114 kable_attrs <- attributes(kable_input)
Hao Zhu9bab1532017-07-24 15:08:41 -0400115 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhu26234122017-02-22 15:34:33 -0500116
117 # Modify class
Hao Zhue10cfd32017-02-21 16:41:14 -0500118 bootstrap_options <- match.arg(
119 bootstrap_options,
Hao Zhu26234122017-02-22 15:34:33 -0500120 c("basic", "striped", "bordered", "hover", "condensed", "responsive"),
Hao Zhue10cfd32017-02-21 16:41:14 -0500121 several.ok = T
122 )
123
Hao Zhu26234122017-02-22 15:34:33 -0500124 kable_xml_class <- NULL
125 if (xml_has_attr(kable_xml, "class")) {
126 kable_xml_class <- xml_attr(kable_xml, "class")
Hao Zhue10cfd32017-02-21 16:41:14 -0500127 }
Hao Zhu26234122017-02-22 15:34:33 -0500128 if (length(bootstrap_options) == 1 && bootstrap_options == "basic") {
129 bootstrap_options <- "table"
130 } else {
131 bootstrap_options <- bootstrap_options[bootstrap_options != "basic"]
132 bootstrap_options <- paste0("table-", bootstrap_options)
133 bootstrap_options <- c("table", bootstrap_options)
134 }
135 xml_attr(kable_xml, "class") <- paste(c(kable_xml_class, bootstrap_options),
136 collapse = " ")
Hao Zhue10cfd32017-02-21 16:41:14 -0500137
Hao Zhu26234122017-02-22 15:34:33 -0500138 # Modify style
139 kable_xml_style <- NULL
140 if (xml_has_attr(kable_xml, "style")) {
141 kable_xml_style <- xml_attr(kable_xml, "style")
142 }
Hao Zhue10cfd32017-02-21 16:41:14 -0500143 if (!is.null(font_size)) {
Hao Zhu26234122017-02-22 15:34:33 -0500144 kable_xml_style <- c(kable_xml_style,
Hao Zhuc1f38412017-02-23 12:13:48 -0500145 paste0("font-size: ", font_size, "px;"))
Hao Zhufc14c9b2017-05-22 14:03:22 -0400146 kable_caption_node <- xml_tpart(kable_xml, "caption")
147 if (!is.null(kable_caption_node)) {
148 xml_attr(kable_caption_node, "style") <- "font-size: initial !important;"
149 }
Hao Zhue10cfd32017-02-21 16:41:14 -0500150 }
151 if (!full_width) {
Hao Zhu26234122017-02-22 15:34:33 -0500152 kable_xml_style <- c(kable_xml_style, "width: auto !important;")
Hao Zhue10cfd32017-02-21 16:41:14 -0500153 }
Hao Zhu94956582017-02-21 18:18:29 -0500154
Hao Zhuc05e1812017-02-25 01:45:35 -0500155 position <- match.arg(position)
156 position_style <- switch(
157 position,
158 center = "margin-left: auto; margin-right: auto;",
Hao Zhufd516ba2017-07-28 14:30:25 -0400159 left = "",
Hao Zhuc05e1812017-02-25 01:45:35 -0500160 right = "margin-right: 0; margin-left: auto",
161 float_left = "float: left; margin-right: 10px;",
162 float_right = "float: right; margin-left: 10px;"
163 )
164 kable_xml_style <- c(kable_xml_style, position_style)
165
Hao Zhu26234122017-02-22 15:34:33 -0500166 if (length(kable_xml_style) != 0) {
167 xml_attr(kable_xml, "style") <- paste(kable_xml_style, collapse = " ")
Hao Zhue10cfd32017-02-21 16:41:14 -0500168 }
Hao Zhu9b45a182017-02-27 18:17:46 -0500169
Hao Zhuf2dfd142017-07-24 14:43:28 -0400170 out <- as_kable_xml(kable_xml)
Hao Zhu909ea382017-06-12 15:43:47 -0400171 attributes(out) <- kable_attrs
Hao Zhu9b45a182017-02-27 18:17:46 -0500172 return(out)
Hao Zhue10cfd32017-02-21 16:41:14 -0500173}
Hao Zhuc1f38412017-02-23 12:13:48 -0500174
175# LaTeX table style
176pdfTable_styling <- function(kable_input,
Hao Zhuc05e1812017-02-25 01:45:35 -0500177 latex_options = "basic",
178 full_width = F,
179 position = c("center", "left", "right",
Hao Zhua3fc0c42017-02-27 12:04:59 -0500180 "float_left", "float_right"),
Hao Zhua31e97f2017-06-08 14:55:41 -0400181 font_size = NULL,
Hao Zhuca211db2017-07-25 00:06:43 -0400182 repeat_header_text = "\\textit{(continued)}",
Hao Zhue1be9602017-08-17 15:44:31 -0400183 repeat_header_method = c("append", "replace"),
Hao Zhu6c9714a2017-10-02 14:52:45 -0400184 repeat_header_continued = FALSE,
Hao Zhu245931c2017-09-01 22:43:56 -0400185 stripe_color = "gray!6",
186 latex_table_env = NULL) {
Hao Zhuc1f38412017-02-23 12:13:48 -0500187
Hao Zhuc05e1812017-02-25 01:45:35 -0500188 latex_options <- match.arg(
189 latex_options,
Rob Shepherdc59d15e2017-08-26 16:06:36 +0100190 c("basic", "striped", "hold_position", "HOLD_position", "scale_down", "repeat_header"),
Hao Zhuc05e1812017-02-25 01:45:35 -0500191 several.ok = T
192 )
193
Hao Zhuca211db2017-07-25 00:06:43 -0400194 repeat_header_method <- match.arg(repeat_header_method)
195
Hao Zhua3fc0c42017-02-27 12:04:59 -0500196 out <- NULL
Hao Zhud2c0f732017-08-26 10:40:14 -0400197 out <- enc2utf8(as.character(kable_input))
Hao Zhuc05e1812017-02-25 01:45:35 -0500198 table_info <- magic_mirror(kable_input)
Hao Zhuc05e1812017-02-25 01:45:35 -0500199
200 if ("striped" %in% latex_options) {
Hao Zhu71a224f2017-08-18 11:06:22 -0400201 out <- styling_latex_striped(out, table_info, stripe_color)
Hao Zhuc05e1812017-02-25 01:45:35 -0500202 }
203
204 # hold_position is only meaningful in a table environment
205 if ("hold_position" %in% latex_options & table_info$table_env) {
Hao Zhua3fc0c42017-02-27 12:04:59 -0500206 out <- styling_latex_hold_position(out)
Hao Zhuc05e1812017-02-25 01:45:35 -0500207 }
208
Rob Shepherdc59d15e2017-08-26 16:06:36 +0100209 # HOLD_position is only meaningful in a table environment
210 if ("HOLD_position" %in% latex_options & table_info$table_env) {
211 out <- styling_latex_HOLD_position(out)
212 }
213
Hao Zhua3fc0c42017-02-27 12:04:59 -0500214 if ("scale_down" %in% latex_options) {
215 out <- styling_latex_scale_down(out, table_info)
Hao Zhuc05e1812017-02-25 01:45:35 -0500216 }
217
Hao Zhu971d89f2017-06-07 19:22:47 -0400218 if ("repeat_header" %in% latex_options & table_info$tabular == "longtable") {
Hao Zhuca211db2017-07-25 00:06:43 -0400219 out <- styling_latex_repeat_header(out, table_info, repeat_header_text,
Hao Zhu6c9714a2017-10-02 14:52:45 -0400220 repeat_header_method, repeat_header_continued)
Hao Zhu971d89f2017-06-07 19:22:47 -0400221 }
222
Hao Zhuc05e1812017-02-25 01:45:35 -0500223 if (full_width) {
Hao Zhu245931c2017-09-01 22:43:56 -0400224 latex_table_env <- ifelse(table_info$tabular == "longtable",
225 "longtabu", "tabu")
226 full_width_return <- styling_latex_full_width(out, table_info)
227 out <- full_width_return[[1]]
228 table_info$align_vector <- full_width_return[[2]]
Hao Zhua3fc0c42017-02-27 12:04:59 -0500229 }
Hao Zhuc05e1812017-02-25 01:45:35 -0500230
Hao Zhua3fc0c42017-02-27 12:04:59 -0500231 if (!is.null(font_size)) {
232 out <- styling_latex_font_size(out, table_info, font_size)
Hao Zhuc05e1812017-02-25 01:45:35 -0500233 }
234
Hao Zhu245931c2017-09-01 22:43:56 -0400235 if (!is.null(latex_table_env)) {
236 out <- styling_latex_table_env(out, table_info$tabular, latex_table_env)
237 table_info$tabular <- latex_table_env
238 table_info$begin_tabular <- sub("tabular", latex_table_env,
239 table_info$begin_tabular)
240 table_info$end_tabular <- sub("tabular", latex_table_env,
241 table_info$end_tabular)
242 }
243
Hao Zhuc05e1812017-02-25 01:45:35 -0500244 position <- match.arg(position)
Hao Zhua3fc0c42017-02-27 12:04:59 -0500245 out <- styling_latex_position(out, table_info, position, latex_options)
Hao Zhuc05e1812017-02-25 01:45:35 -0500246
247 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhu32f43f72017-06-20 18:24:54 -0400248 attr(out, "kable_meta") <- table_info
Hao Zhuc05e1812017-02-25 01:45:35 -0500249 return(out)
Hao Zhuc1f38412017-02-23 12:13:48 -0500250}
Hao Zhua3fc0c42017-02-27 12:04:59 -0500251
Hao Zhue1be9602017-08-17 15:44:31 -0400252styling_latex_striped <- function(x, table_info, color) {
Hao Zhu7d4a3e32017-06-08 21:29:13 -0400253 # gray!6 is the same as shadecolor ({RGB}{248, 248, 248}) in pdf_document
254 if (table_info$tabular == "longtable" & !is.na(table_info$caption)) {
Hao Zhue1be9602017-08-17 15:44:31 -0400255 row_color <- sprintf("\\rowcolors{2}{white}{%s}", color)
Hao Zhu7d4a3e32017-06-08 21:29:13 -0400256 } else {
Hao Zhue1be9602017-08-17 15:44:31 -0400257 row_color <- sprintf("\\rowcolors{2}{%s}{white}", color)
Hao Zhu7d4a3e32017-06-08 21:29:13 -0400258 }
Hao Zhu00ba87c2017-08-01 12:42:58 -0400259
260 x <- read_lines(x)
261 if (table_info$booktabs) {
262 header_rows_start <- which(x == "\\toprule")[1]
263 header_rows_end <- which(x == "\\midrule")[1]
264 } else {
265 header_rows_start <- which(x == "\\hline")[1]
266 header_rows_end <- which(x == "\\hline")[2]
267 }
268
269 x <- c(
270 row_color,
271 x[1:(header_rows_start - 1)],
272 "\\hiderowcolors",
273 x[header_rows_start:header_rows_end],
274 "\\showrowcolors",
275 x[(header_rows_end + 1):length(x)],
276 "\\rowcolors{2}{white}{white}"
277 )
278 x <- paste0(x, collapse = "\n")
279 return(x)
Hao Zhua3fc0c42017-02-27 12:04:59 -0500280}
281
282styling_latex_hold_position <- function(x) {
283 sub("\\\\begin\\{table\\}", "\\\\begin\\{table\\}[!h]", x)
284}
285
Rob Shepherdc59d15e2017-08-26 16:06:36 +0100286styling_latex_HOLD_position <- function(x) {
287 sub("\\\\begin\\{table\\}", "\\\\begin\\{table\\}[H]", x)
288}
289
Hao Zhua3fc0c42017-02-27 12:04:59 -0500290styling_latex_scale_down <- function(x, table_info) {
291 # You cannot put longtable in a resizebox
292 # http://tex.stackexchange.com/questions/83457/how-to-resize-or-scale-a-longtable-revised
293 if (table_info$tabular == "longtable") {
294 warning("Longtable cannot be resized.")
295 return(x)
296 }
297 x <- sub(table_info$begin_tabular,
Hao Zhucc21dc72017-05-20 01:15:25 -0400298 paste0("\\\\resizebox\\{\\\\linewidth\\}\\{\\!\\}\\{",
Hao Zhua3fc0c42017-02-27 12:04:59 -0500299 table_info$begin_tabular),
300 x)
301 sub(table_info$end_tabular, paste0(table_info$end_tabular, "\\}"), x)
302}
303
Hao Zhuca211db2017-07-25 00:06:43 -0400304styling_latex_repeat_header <- function(x, table_info, repeat_header_text,
Hao Zhu6c9714a2017-10-02 14:52:45 -0400305 repeat_header_method,
306 repeat_header_continued) {
Hao Zhua31e97f2017-06-08 14:55:41 -0400307 x <- read_lines(x)
308 if (table_info$booktabs) {
309 header_rows_start <- which(x == "\\toprule")[1]
310 header_rows_end <- which(x == "\\midrule")[1]
311 } else {
312 header_rows_start <- which(x == "\\hline")[1]
313 header_rows_end <- which(x == "\\hline")[2]
314 }
Hao Zhufdec1842017-06-08 17:06:04 -0400315
316 if (is.na(table_info$caption)) {
317 continue_line <- paste0(
318 "\\multicolumn{", table_info$ncol, "}{@{}l}{", repeat_header_text,
319 "}\\\\"
320 )
321 } else {
Hao Zhuca211db2017-07-25 00:06:43 -0400322 if (repeat_header_method == "append") {
Hao Zhufd2ef9b2017-07-25 13:14:18 -0400323 caption_without_lab <- sub("\\\\label\\{[^\\}]*\\}", "", table_info$caption)
Hao Zhu6f95ea42017-07-25 13:12:12 -0400324 repeat_header_text <- paste(caption_without_lab, repeat_header_text)
Hao Zhuca211db2017-07-25 00:06:43 -0400325 }
Hao Zhu68d4fe92017-07-25 14:07:50 -0400326 continue_line <- paste0("\\caption[]{", repeat_header_text, "}\\\\")
Hao Zhufdec1842017-06-08 17:06:04 -0400327 }
328
Hao Zhu6c9714a2017-10-02 14:52:45 -0400329 if (!table_info$booktabs) {
330 bottom_part <- NULL
331 } else {
332 index_bottomrule <- which(x == "\\bottomrule")
333 x <- x[-index_bottomrule]
334
335 if (repeat_header_continued == FALSE) {
Hao Zhu8d347c42017-10-10 13:11:19 -0400336 bottom_part <- "\\endfoot\n*\\bottomrule\n\\endlastfoot"
Hao Zhu6c9714a2017-10-02 14:52:45 -0400337 } else {
338 if (repeat_header_continued == TRUE) {
Hao Zhub7f4f4e2017-10-02 14:58:41 -0400339 bottom_text <- "\\textit{(continued \\ldots)}"
Hao Zhu6c9714a2017-10-02 14:52:45 -0400340 } else {
341 bottom_text <- repeat_header_continued
342 }
343 bottom_part <- paste0(
344 "\\bottomrule\n",
Hao Zhub7f4f4e2017-10-02 14:58:41 -0400345 "\\multicolumn{", table_info$ncol, "}{r@{}}{", bottom_text, "}\\\n",
Hao Zhu6c9714a2017-10-02 14:52:45 -0400346 "\\endfoot\n",
Hao Zhu8d347c42017-10-10 13:11:19 -0400347 "*\\bottomrule\n",
Hao Zhu6c9714a2017-10-02 14:52:45 -0400348 "\\endlastfoot"
349 )
350 }
351 }
352
353 # x[index_bottomrule - 1] <- paste0(x[index_bottomrule - 1], "*\\bottomrule")
Hao Zhua31e97f2017-06-08 14:55:41 -0400354 x <- c(
355 x[1:header_rows_end],
356 "\\endfirsthead",
357 continue_line,
358 x[header_rows_start:header_rows_end],
359 "\\endhead",
Hao Zhu6c9714a2017-10-02 14:52:45 -0400360 bottom_part,
Hao Zhua31e97f2017-06-08 14:55:41 -0400361 x[(header_rows_end + 1):length(x)]
362 )
363 x <- paste0(x, collapse = "\n")
364 return(x)
Hao Zhu971d89f2017-06-07 19:22:47 -0400365}
366
Hao Zhua3fc0c42017-02-27 12:04:59 -0500367styling_latex_full_width <- function(x, table_info) {
Hao Zhu245931c2017-09-01 22:43:56 -0400368 col_align <- as.character(factor(
369 table_info$align_vector, c("c", "l", "r"),
370 c(">{\\\\centering}X", ">{\\\\raggedright}X", ">{\\\\raggedleft}X")
371 ))
372 col_align[is.na(col_align)] <- table_info$align_vector[is.na(col_align)]
373 col_align_vector <- col_align
374 col_align <- paste0(" to \\\\linewidth {", paste(col_align, collapse = ""), "}")
Hao Zhua3fc0c42017-02-27 12:04:59 -0500375 x <- sub(paste0(table_info$begin_tabular, "\\{[^\\\\n]*\\}"),
376 table_info$begin_tabular, x)
Hao Zhu245931c2017-09-01 22:43:56 -0400377 x <- sub(table_info$begin_tabular,
Hao Zhua3fc0c42017-02-27 12:04:59 -0500378 paste0(table_info$begin_tabular, col_align), x)
Hao Zhu245931c2017-09-01 22:43:56 -0400379 return(list(x, col_align_vector))
Hao Zhua3fc0c42017-02-27 12:04:59 -0500380}
381
382styling_latex_position <- function(x, table_info, position, latex_options) {
newtuxd2867062017-09-29 00:19:27 -0400383 hold_position <- intersect(c("hold_position", "HOLD_position"), latex_options)
Hao Zhua3fc0c42017-02-27 12:04:59 -0500384 switch(
385 position,
386 center = styling_latex_position_center(x, table_info, hold_position),
387 left = styling_latex_position_left(x, table_info),
388 right = styling_latex_position_right(x, table_info, hold_position),
389 float_left = styling_latex_position_float(x, table_info, "l"),
390 float_right = styling_latex_position_float(x, table_info, "r")
391 )
392}
393
394styling_latex_position_center <- function(x, table_info, hold_position) {
395 if (!table_info$table_env & table_info$tabular == "tabular") {
newtuxd2867062017-09-29 00:19:27 -0400396 x <- paste0("\\begin{table}\n\\centering", x, "\n\\end{table}")
397 if (hold_position == "hold_position") {
398 x <- styling_latex_hold_position(x)
399 } else {
400 x <- styling_latex_HOLD_position(x)
401 }
Hao Zhua3fc0c42017-02-27 12:04:59 -0500402 }
403 return(x)
404}
405
406styling_latex_position_left <- function(x, table_info) {
407 if (table_info$tabular != "longtable") return(sub("\\\\centering\\n", "", x))
408 longtable_option <- "\\[l\\]"
409 sub(paste0("\\\\begin\\{longtable\\}", table_info$valign2),
410 paste0("\\\\begin\\{longtable\\}", longtable_option), x)
411}
412
413styling_latex_position_right <- function(x, table_info, hold_position) {
414 warning("Position = right is only supported for longtable in LaTeX. ",
415 "Setting back to center...")
416 styling_latex_position_center(x, table_info, hold_position)
417}
418
419styling_latex_position_float <- function(x, table_info, option) {
420 if (table_info$tabular == "longtable") {
421 warning("wraptable is not supported for longtable.")
422 if (option == "l") return(styling_latex_position_left(x, table_info))
423 if (option == "r") return(styling_latex_position_right(x, table_info, F))
424 }
Hao Zhuf7994dd2017-02-27 16:58:42 -0500425 size_matrix <- sapply(sapply(table_info$contents, str_split, " & "), nchar)
426 col_max_length <- apply(size_matrix, 1, max) + 4
Hao Zhua3fc0c42017-02-27 12:04:59 -0500427 if (table_info$table_env) {
Hao Zhua3fc0c42017-02-27 12:04:59 -0500428 option <- sprintf("\\\\begin\\{wraptable\\}\\{%s\\}", option)
429 option <- paste0(option, "\\{",sum(col_max_length) * 0.15, "cm\\}")
430 x <- sub("\\\\begin\\{table\\}\\[\\!h\\]", "\\\\begin\\{table\\}", x)
431 x <- sub("\\\\begin\\{table\\}", option, x)
432 x <- sub("\\\\end\\{table\\}", "\\\\end\\{wraptable\\}", x)
Hao Zhuf7994dd2017-02-27 16:58:42 -0500433 } else {
434 option <- sprintf("\\begin{wraptable}{%s}", option)
435 option <- paste0(option, "{",sum(col_max_length) * 0.15, "cm}")
436 x <- paste0(option, x, "\\end{wraptable}")
Hao Zhua3fc0c42017-02-27 12:04:59 -0500437 }
Hao Zhuf7994dd2017-02-27 16:58:42 -0500438 return(x)
Hao Zhua3fc0c42017-02-27 12:04:59 -0500439}
440
441styling_latex_font_size <- function(x, table_info, font_size) {
442 row_height <- font_size + 2
Hao Zhu245931c2017-09-01 22:43:56 -0400443 if (table_info$tabular != "longtable" & table_info$table_env) {
Hao Zhua3fc0c42017-02-27 12:04:59 -0500444 return(sub(table_info$begin_tabular,
445 paste0("\\\\fontsize\\{", font_size, "\\}\\{", row_height,
446 "\\}\\\\selectfont\n", table_info$begin_tabular),
447 x))
448 }
449 # For longtable and tabular without table environment. Simple wrap around
450 # fontsize is good enough
451 return(paste0(
452 "\\begingroup\\fontsize{", font_size, "}{", row_height, "}\\selectfont\n", x,
453 "\\endgroup"
454 ))
455}
Hao Zhuf2dfd142017-07-24 14:43:28 -0400456
Hao Zhu245931c2017-09-01 22:43:56 -0400457styling_latex_table_env <- function(x, current_env, latex_table_env) {
Hao Zhu3af9f942017-09-07 12:30:21 -0400458 x <- sub(
459 paste0("begin\\{", current_env, "\\}\\[t\\]"),
460 paste0("begin\\{", latex_table_env, "\\}"), x
461 )
462 x <- sub(
463 paste0("begin\\{", current_env, "\\}"),
464 paste0("begin\\{", latex_table_env, "\\}"), x
465 )
466 x <- sub(
467 paste0("end\\{", current_env, "\\}"),
468 paste0("end\\{", latex_table_env, "\\}"), x
469 )
470 return(x)
Hao Zhu245931c2017-09-01 22:43:56 -0400471}
Hao Zhuf2dfd142017-07-24 14:43:28 -0400472