blob: 0f36f6591db323f4f232bfe51938014a193cac8d [file] [log] [blame]
Hao Zhubff01912017-05-23 18:05:00 -04001#' Specify the look of the selected column
2#'
3#' @description This function allows users to select a column and then specify
Hao Zhue7c8f702017-10-10 13:22:59 -04004#' its look.
Hao Zhubff01912017-05-23 18:05:00 -04005#'
6#' @param kable_input Output of `knitr::kable()` with `format` specified
Hao Zhu322de082017-09-11 19:25:29 -04007#' @param column A numeric value or vector indicating which column(s) to be selected.
Hao Zhubff01912017-05-23 18:05:00 -04008#' @param width A character string telling HTML & LaTeX how wide the column
9#' needs to be, e.g. "10cm", "3in" or "30em".
Hao Zhu33b865f2020-08-18 02:10:43 -040010#' @param bold T/F value or vector to control whether the text of the selected
11#' column need to be bolded.
12#' @param italic T/F value or vector to control whether the text of the
13#' selected column need to be emphasized.
14#' @param monospace T/F value or vector to control whether the text of the
15#' selected column need to be monospaced (verbatim)
16#' @param underline T/F value or vector to control whether the text of the
17#' selected row need to be underlined
18#' @param strikeout T/F value or vector to control whether the text of the
19#' selected row need to be striked out.
20#' @param color A character string or vector for column text color. Here please
21#' pay attention to the differences in color codes between HTML and LaTeX.
22#' @param background A character string or vector for column background color. Here please
Hao Zhu53e240f2017-09-04 20:04:29 -040023#' pay attention to the differences in color codes between HTML and LaTeX.
24#' @param border_left A logical variable indicating whether there should be a
25#' border line on the left of the selected column. In HTML, you can also pass
26#' in a character string for the CSS of the border line
27#' @param border_right A logical variable indicating whether there should be a
28#' border line on the right of the selected column. In HTML, you can also pass
29#' in a character string for the CSS of the border line
Hao Zhu6107f372018-05-21 00:23:26 -040030#' @param width_min Only for HTML table. Normal column width will automatically
31#' collapse when the window cannot hold enough contents. With this `width_min`,
Hao Zhub1caa272018-04-14 14:19:46 -040032#' you can set up a column with a width that won't collapse even when the
33#' window is not wide enough.
Hao Zhu6107f372018-05-21 00:23:26 -040034#' @param width_max Only for HTML table. `width_max` defines the maximum width
Hao Zhub1caa272018-04-14 14:19:46 -040035#' of table columns.
Hao Zhu33b865f2020-08-18 02:10:43 -040036#' @param extra_css A vector of extra css text to be passed into the cells of
37#' the column.
Hao Zhu907ddfe2018-04-23 15:19:09 -040038#' @param include_thead T/F. A HTML only feature to contoll whether the
39#' header row will be manipulated. Default is `FALSE`.
Duncan Murdoch8bc96222019-04-29 12:46:39 -040040#' @param latex_column_spec Only for LaTeX tables. Code to replace the column
41#' specification. If not `NULL`, will override all other arguments.
Hao Zhu2b739ac2020-08-15 01:38:51 -040042#' @param latex_valign vertical alignment. Only works when you specified column
43#' width. Choose among `p`, `m`, `b`.
Hao Zhu33b865f2020-08-18 02:10:43 -040044#' @param link A vector of strings for url links.
45#' @param new_tab T/F for whether to open up the new link in new tab
46#' @param tooltip A vector of strings to be displayed as tooltip.
47#' Obviously, this feature is only available in HTML. Read the package
48#' vignette to see how to use bootstrap tooltip css to improve the loading
49#' speed and look.
50#' @param popover Similar with tooltip but can hold more contents. The best way
51#' to build a popover is through `spec_popover()`. If you only provide a text
52#' string, it will be used as content. Note that You have to enable this
53#' bootstrap module manually. Read the package vignette to see how.
Duncan Murdoch8bc96222019-04-29 12:46:39 -040054#'
55#' @details Use `latex_column_spec` in a LaTeX table to change or
56#' customize the column specification. Because of the way it is handled
57#' internally, any backslashes must be escaped.
Hao Zhu78e61222017-05-24 20:53:35 -040058#'
59#' @examples x <- knitr::kable(head(mtcars), "html")
Hao Zhu4840bc92017-09-15 15:55:05 -040060#' column_spec(x, 1:2, width = "20em", bold = TRUE, italic = TRUE)
Duncan Murdoch8bc96222019-04-29 12:46:39 -040061#' x <- knitr::kable(head(mtcars), "latex", booktabs = TRUE)
62#' column_spec(x, 1, latex_column_spec = ">{\\\\color{red}}c")
Hao Zhubff01912017-05-23 18:05:00 -040063#' @export
Hao Zhu322de082017-09-11 19:25:29 -040064column_spec <- function(kable_input, column,
Hao Zhu8f202992017-07-15 02:20:18 -040065 width = NULL, bold = FALSE, italic = FALSE,
Hao Zhuef0c8302018-01-12 13:30:20 -050066 monospace = FALSE, underline = FALSE, strikeout = FALSE,
67 color = NULL, background = NULL,
Hao Zhub1de9672018-01-08 16:29:24 -050068 border_left = FALSE, border_right = FALSE,
Hao Zhub1caa272018-04-14 14:19:46 -040069 width_min = NULL, width_max = NULL,
Duncan Murdoch8bc96222019-04-29 12:46:39 -040070 extra_css = NULL, include_thead = FALSE,
Hao Zhu33b865f2020-08-18 02:10:43 -040071 latex_column_spec = NULL, latex_valign = 'p',
72 link = NULL, new_tab = TRUE,
73 tooltip = NULL, popover = NULL) {
Hao Zhu322de082017-09-11 19:25:29 -040074 if (!is.numeric(column)) {
75 stop("column must be numeric. ")
Hao Zhubff01912017-05-23 18:05:00 -040076 }
77 kable_format <- attr(kable_input, "format")
78 if (!kable_format %in% c("html", "latex")) {
Hao Zhu401ebd82018-01-14 17:10:20 -050079 warning("Please specify format in kable. kableExtra can customize either ",
80 "HTML or LaTeX outputs. See https://haozhu233.github.io/kableExtra/ ",
81 "for details.")
Hao Zhubff01912017-05-23 18:05:00 -040082 return(kable_input)
83 }
84 if (kable_format == "html") {
Hao Zhu322de082017-09-11 19:25:29 -040085 return(column_spec_html(kable_input, column, width,
Hao Zhu669bcd22017-08-19 14:53:40 -040086 bold, italic, monospace,
Hao Zhuef0c8302018-01-12 13:30:20 -050087 underline, strikeout,
Hao Zhuec7ab922017-08-19 22:56:44 -040088 color, background,
Hao Zhub1caa272018-04-14 14:19:46 -040089 border_left, border_right,
90 width_min, width_max,
Hao Zhu33b865f2020-08-18 02:10:43 -040091 extra_css, include_thead,
92 link, new_tab, tooltip, popover))
Hao Zhubff01912017-05-23 18:05:00 -040093 }
94 if (kable_format == "latex") {
Hao Zhu322de082017-09-11 19:25:29 -040095 return(column_spec_latex(kable_input, column, width,
Hao Zhu669bcd22017-08-19 14:53:40 -040096 bold, italic, monospace,
Hao Zhuef0c8302018-01-12 13:30:20 -050097 underline, strikeout,
Hao Zhuec7ab922017-08-19 22:56:44 -040098 color, background,
Duncan Murdoch8bc96222019-04-29 12:46:39 -040099 border_left, border_right,
Hao Zhu33b865f2020-08-18 02:10:43 -0400100 latex_column_spec, latex_valign, include_thead,
101 link))
Hao Zhubff01912017-05-23 18:05:00 -0400102 }
103}
104
Hao Zhu322de082017-09-11 19:25:29 -0400105column_spec_html <- function(kable_input, column, width,
Hao Zhu669bcd22017-08-19 14:53:40 -0400106 bold, italic, monospace,
Hao Zhuef0c8302018-01-12 13:30:20 -0500107 underline, strikeout,
Hao Zhuec7ab922017-08-19 22:56:44 -0400108 color, background,
Hao Zhub1caa272018-04-14 14:19:46 -0400109 border_left, border_right,
110 width_min, width_max,
Hao Zhu33b865f2020-08-18 02:10:43 -0400111 extra_css, include_thead,
112 link, new_tab, tooltip, popover) {
Hao Zhubff01912017-05-23 18:05:00 -0400113 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -0400114 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhubff01912017-05-23 18:05:00 -0400115 kable_tbody <- xml_tpart(kable_xml, "tbody")
116
117 group_header_rows <- attr(kable_input, "group_header_rows")
Hao Zhu9b43f622017-09-11 19:00:08 -0400118 all_contents_rows <- seq(1, length(xml_children(kable_tbody)))
Hao Zhu32f43f72017-06-20 18:24:54 -0400119
Hao Zhubff01912017-05-23 18:05:00 -0400120 if (!is.null(group_header_rows)) {
121 all_contents_rows <- all_contents_rows[!all_contents_rows %in%
122 group_header_rows]
123 }
124
Hao Zhuec7ab922017-08-19 22:56:44 -0400125 # Border css
126 border_l_css <- "1px solid"
127 border_r_css <- "1px solid"
128 if (is.character(border_left)) {
129 border_l_css <- border_left
130 border_left <- T
131 }
132 if (is.character(border_right)) {
133 border_r_css <- border_right
134 border_right <- T
135 }
136
Hao Zhu907ddfe2018-04-23 15:19:09 -0400137 if (include_thead) {
138 kable_thead <- xml_tpart(kable_xml, "thead")
139 nrow_thead <- length(xml_children(kable_thead))
140 for (j in column) {
141 target_cell <- xml_child(xml_child(kable_thead, nrow_thead), j)
142 column_spec_html_cell(
143 target_cell, width, width_min, width_max,
Hao Zhu33b865f2020-08-18 02:10:43 -0400144 bold[1], italic[1], monospace[1], underline[1], strikeout[1],
145 color[1], background[1], border_left, border_right,
Hao Zhu907ddfe2018-04-23 15:19:09 -0400146 border_l_css, border_r_css,
Hao Zhu33b865f2020-08-18 02:10:43 -0400147 extra_css[1], link[1], new_tab[1], tooltip[1], popover[1]
148 )
149 }
150 }
151
152 nrows <- length(all_contents_rows)
153 off <- 0
154
155 bold <- ensure_len_html(bold, nrows, "bold")
156 italic <- ensure_len_html(italic, nrows, "italic")
157 monospace <- ensure_len_html(monospace, nrows, "monospace")
158 underline <- ensure_len_html(underline, nrows, "underline")
159 strikeout <- ensure_len_html(strikeout, nrows, "strikeout")
160 color <- ensure_len_html(color, nrows, "color")
161 background <- ensure_len_html(background, nrows,"background")
162 link <- ensure_len_html(link, nrows, "link")
163 new_tab <- ensure_len_html(new_tab, nrows, "new_tab")
164 tooltip <- ensure_len_html(tooltip, nrows, "tooltip")
165 popover <- ensure_len_html(popover, nrows, "popover")
166
167 for (i in all_contents_rows) {
168 for (j in column) {
169 target_cell <- xml_child(xml_child(kable_tbody, i), j)
170 column_spec_html_cell(
171 target_cell, width, width_min, width_max,
172 bold[i], italic[i], monospace[i], underline[i], strikeout[i],
173 color[i], background[i], border_left, border_right,
174 border_l_css, border_r_css,
175 extra_css,
176 link[i], new_tab[i], tooltip[i], popover[i]
Hao Zhu907ddfe2018-04-23 15:19:09 -0400177 )
178 }
179 }
Hao Zhu6a14e882017-10-31 17:04:12 -0400180
Hao Zhuf2dfd142017-07-24 14:43:28 -0400181 out <- as_kable_xml(kable_xml)
Hao Zhubff01912017-05-23 18:05:00 -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 Zhubff01912017-05-23 18:05:00 -0400184 return(out)
185}
186
Hao Zhu33b865f2020-08-18 02:10:43 -0400187ensure_len_html <- function(x, l, name) {
188 if (is.null(x)) return(NULL)
189 if (length(x) == 1) return(rep(x, l))
190 if (length(x) == l) return(x)
191 warning("The number of provided values in ", name, " does not equal to the ",
192 "number of rows. ")
193 return(rep(x, ceiling(l / length(x)))[seq(1, l)])
194}
195
Hao Zhu907ddfe2018-04-23 15:19:09 -0400196column_spec_html_cell <- function(target_cell, width, width_min, width_max,
197 bold, italic, monospace, underline, strikeout,
198 color, background,
199 border_left, border_right,
200 border_l_css, border_r_css,
Hao Zhu33b865f2020-08-18 02:10:43 -0400201 extra_css,
202 link, new_tab, tooltip, popover) {
Hao Zhu517453c2018-05-13 13:07:18 -0400203 if (is.na(xml_attr(target_cell, "style"))) {
204 xml_attr(target_cell, "style") <- ""
205 }
Hao Zhu907ddfe2018-04-23 15:19:09 -0400206 if (!is.null(width)) {
207 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
208 "width: ", width, "; ")
209 }
210 if (!is.null(width_min)) {
211 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
212 "min-width: ", width_min, "; ")
213 }
214 if (!is.null(width_max)) {
215 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
216 "max-width: ", width_max, "; ")
217 }
218 if (bold) {
219 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
220 "font-weight: bold;")
221 }
222 if (italic) {
223 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
224 "font-style: italic;")
225 }
226 if (monospace) {
227 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
228 "font-family: monospace;")
229 }
230 if (underline) {
231 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
232 "text-decoration: underline;")
233 }
234 if (strikeout) {
235 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
236 "text-decoration: line-through;")
237 }
238 if (!is.null(color)) {
239 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
Hao Zhu72917f92019-03-15 18:41:42 -0400240 "color: ", html_color(color),
241 " !important;")
Hao Zhu907ddfe2018-04-23 15:19:09 -0400242 }
243 if (!is.null(background)) {
244 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
245 "background-color: ",
Hao Zhu72917f92019-03-15 18:41:42 -0400246 html_color(background),
247 " !important;")
Hao Zhu907ddfe2018-04-23 15:19:09 -0400248 }
249 if (border_left) {
250 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
251 "border-left:", border_l_css, ";")
252 }
253 if (border_right) {
254 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
255 "border-right:", border_r_css, ";")
256 }
257 if (!is.null(extra_css)) {
258 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
259 extra_css)
260 }
Hao Zhu33b865f2020-08-18 02:10:43 -0400261
262 # favor popover over tooltip
263 if (!is.null(popover)) {
264 if (class(popover) != "ke_popover") popover <- spec_popover(popover)
265 popover_list <- attr(popover, 'list')
266 for (p in names(popover_list)) {
267 xml_attr(target_cell, p) <- popover_list[p]
268 }
269 } else if (!is.null(tooltip)) {
270 if (class(tooltip) != "ke_tooltip") tooltip <- spec_tooltip(tooltip)
271 tooltip_list <- attr(tooltip, 'list')
272 for (t in names(tooltip_list)) {
273 xml_attr(target_cell, t) <- tooltip_list[t]
274 }
275 }
276 # if (!is.null(popover)) {
277 # if (class(popover) != "ke_popover") popover <- spec_popover(popover)
278 # popover_list <- attr(popover, 'list')
279 # span_node <- xml2::read_xml(paste0(
280 # '<span>', xml_text(target_cell), '</span>'
281 # ))
282 # for (p in names(popover_list)) {
283 # xml_attr(span_node, p) <- popover_list[p]
284 # }
285 # xml_add_child(target_cell, span_node)
286 # xml_text(target_cell) <- ""
287 # } else if (!is.null(tooltip)) {
288 # if (class(tooltip) != "ke_tooltip") tooltip <- spec_tooltip(tooltip)
289 # tooltip_list <- attr(tooltip, 'list')
290 # span_node <- xml2::read_xml(paste0(
291 # '<span>', xml_text(target_cell), '</span>'
292 # ))
293 # for (t in names(tooltip_list)) {
294 # xml_attr(span_node, t) <- tooltip_list[t]
295 # }
296 # xml_add_child(target_cell, span_node)
297 # xml_text(target_cell) <- ""
298 # }
299
300 if (!is.null(link)) {
301 href_node <- xml2::read_xml(paste0(
302 '<a href="', link, '">', xml_text(target_cell), '</a>'
303 ))
304 if (!is.null(color)) {
305 xml_attr(href_node, "style") <- paste0("color: ", html_color(color),
306 " !important;")
307 }
308 xml_add_child(target_cell, href_node)
309 xml_text(target_cell) <- ""
310 }
Hao Zhu907ddfe2018-04-23 15:19:09 -0400311}
312
Hao Zhu322de082017-09-11 19:25:29 -0400313column_spec_latex <- function(kable_input, column, width,
Hao Zhua73601b2017-08-19 15:31:51 -0400314 bold, italic, monospace,
Hao Zhuef0c8302018-01-12 13:30:20 -0500315 underline, strikeout,
Hao Zhuec7ab922017-08-19 22:56:44 -0400316 color, background,
Duncan Murdoch8bc96222019-04-29 12:46:39 -0400317 border_left, border_right,
Hao Zhu33b865f2020-08-18 02:10:43 -0400318 latex_column_spec, latex_valign, include_thead,
319 link) {
Hao Zhubff01912017-05-23 18:05:00 -0400320 table_info <- magic_mirror(kable_input)
Hao Zhuf4b35292017-06-25 22:38:37 -1000321 if (!is.null(table_info$collapse_rows)) {
322 message("Usually it is recommended to use column_spec before collapse_rows,",
323 " especially in LaTeX, to get a desired result. ")
324 }
Hao Zhu67764aa2019-03-15 11:57:50 -0400325 align_collapse <- ifelse(table_info$booktabs | !is.null(table_info$xtable),
326 "", "\\|")
Hao Zhubff01912017-05-23 18:05:00 -0400327 kable_align_old <- paste(table_info$align_vector, collapse = align_collapse)
328
Hao Zhu322de082017-09-11 19:25:29 -0400329 table_info$align_vector[column] <- unlist(lapply(
330 table_info$align_vector_origin[column],
Hao Zhu6ea2afd2017-09-11 18:30:49 -0400331 function(x) {
332 latex_column_align_builder(
Hao Zhu33b865f2020-08-18 02:10:43 -0400333 x, width, border_left, border_right, latex_column_spec, latex_valign)
Hao Zhu6ea2afd2017-09-11 18:30:49 -0400334 }
335 ))
Hao Zhubff01912017-05-23 18:05:00 -0400336
337 kable_align_new <- paste(table_info$align_vector, collapse = align_collapse)
338
Duncan Murdoch6eb29502018-12-16 20:21:00 -0500339 out <- sub(paste0("\\{", kable_align_old, "\\}"),
340 paste0("\\{", kable_align_new, "\\}"),
Hao Zhu3fc0e882018-04-03 16:06:41 -0400341 solve_enc(kable_input),
Hao Zhubff01912017-05-23 18:05:00 -0400342 perl = T)
Hao Zhuae80df42018-04-12 15:45:11 -0400343
344 if (!is.null(width)) {
345 fix_newline <- replace_makecell_with_newline(out, table_info, column)
346 out <- fix_newline[[1]]
347 table_info <- fix_newline[[2]]
348 }
349
Hao Zhu33b865f2020-08-18 02:10:43 -0400350 if (table_info$duplicated_rows) {
351 dup_fx_out <- fix_duplicated_rows_latex(out, table_info)
352 out <- dup_fx_out[[1]]
353 table_info <- dup_fx_out[[2]]
354 }
355
356 nrows <- length(table_info$contents)
357 off <- table_info$position_offset
358
359 bold <- ensure_len_latex(bold, nrows, off, include_thead, FALSE, "bold")
360 italic <- ensure_len_latex(italic, nrows, off, include_thead, FALSE, "italic")
361 monospace <- ensure_len_latex(monospace, nrows, off, include_thead, FALSE,
362 "monospace")
363 underline <- ensure_len_latex(underline, nrows, off, include_thead, FALSE,
364 "underline")
365 strikeout <- ensure_len_latex(strikeout, nrows, off, include_thead, FALSE,
366 "strikeout")
367 color <- ensure_len_latex(color, nrows, off, include_thead, "black", "color")
368 background <- ensure_len_latex(background, nrows, off, include_thead, "white",
369 "background")
370 link <- ensure_len_latex(link, nrows, off, include_thead, "#", "link")
371
372 if (include_thead) {
373 rows <- seq(1, nrows)
374 } else {
375 rows <- seq(1 + off, nrows)
376 }
377
378 for (i in rows) {
379 target_row <- table_info$contents[i]
380 new_row <- latex_cell_builder(
381 target_row, column, table_info,
382 bold[i], italic[i], monospace[i], underline[i],
383 strikeout[i], color[i], background[i], link[i]
384 # font_size, angle
385 )
386 temp_sub <- ifelse(i == 1 & (table_info$tabular == "longtable" |
387 !is.null(table_info$repeat_header_latex)),
388 gsub, sub)
389 out <- temp_sub(target_row, new_row, out, perl = T)
390 table_info$contents[i] <- new_row
391 }
392
Hao Zhubff01912017-05-23 18:05:00 -0400393 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhuf4b35292017-06-25 22:38:37 -1000394 if (!is.null(width)) {
395 if (is.null(table_info$column_width)) {
396 table_info$column_width <- list()
397 }
Hao Zhu322de082017-09-11 19:25:29 -0400398 for (i in column) {
Hao Zhu9b43f622017-09-11 19:00:08 -0400399 table_info$column_width[[paste0("column_", i)]] <- width
400 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000401 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400402 attr(out, "kable_meta") <- table_info
Hao Zhubff01912017-05-23 18:05:00 -0400403 return(out)
404}
Hao Zhu32f43f72017-06-20 18:24:54 -0400405
Hao Zhu33b865f2020-08-18 02:10:43 -0400406ensure_len_latex <- function(x, l, off, include_thead, def, name) {
407 if (is.null(x)) return(NULL)
408 if (length(x) == 1) return(rep(x, l))
409 if (include_thead) {
410 if (length(x) == l) return(x)
411 warning("The number of provided values in ", name, " does not equal to the ",
412 "number of rows. ")
413 return(rep(x, ceiling(l / length(x)))[seq(1, l)])
414 } else {
415 l_ = l - off
416 if (length(x) == l_) return(c(def, x))
417 warning("The number of provided values in ", name, " does not equal to the ",
418 "number of rows. ")
419 return(c(def, rep(x, ceiling(l_ / length(x)))[seq(1, l_)]))
420 }
421}
422
423latex_column_align_builder <- function(x, width,
Duncan Murdoch8bc96222019-04-29 12:46:39 -0400424 border_left, border_right,
Hao Zhu2b739ac2020-08-15 01:38:51 -0400425 latex_column_spec, latex_valign) {
Hao Zhu32f43f72017-06-20 18:24:54 -0400426 extra_align <- ""
427 if (!is.null(width)) {
428 extra_align <- switch(x,
Hao Zhubf5bfe22017-06-21 14:37:41 -0400429 "l" = "\\\\raggedright\\\\arraybackslash",
430 "c" = "\\\\centering\\\\arraybackslash",
431 "r" = "\\\\raggedleft\\\\arraybackslash")
Hao Zhu2b739ac2020-08-15 01:38:51 -0400432 x <- paste0(latex_valign, "\\{", width, "\\}")
Hao Zhu32f43f72017-06-20 18:24:54 -0400433 }
Hao Zhu33b865f2020-08-18 02:10:43 -0400434 # if (!is.null(color)) {
435 # color <- paste0("\\\\leavevmode\\\\color", latex_color(color))
436 # }
437 #
438 # if (!is.null(background)) {
439 # background <- paste0("\\\\columncolor", latex_color(background))
440 # }
441 #
442 # latex_array_options <- c("\\\\bfseries", "\\\\em", "\\\\ttfamily",
443 # "\\\\underline", "\\\\sout")[
444 # c(bold, italic, monospace, underline, strikeout)]
445 # latex_array_options <- c(latex_array_options, extra_align,
446 # color, background)
447 # latex_array_options <- paste0(
448 # "\\>\\{", paste(latex_array_options, collapse = ""), "\\}"
449 # )
450 # x <- paste0(latex_array_options, x)
Hao Zhuec7ab922017-08-19 22:56:44 -0400451 if (border_left) {
Hao Zhub49bddf2018-01-12 15:25:23 -0500452 x <- paste0("\\|", x)
Hao Zhuec7ab922017-08-19 22:56:44 -0400453 }
454 if (border_right) {
Hao Zhub49bddf2018-01-12 15:25:23 -0500455 x <- paste0(x, "\\|")
Hao Zhuec7ab922017-08-19 22:56:44 -0400456 }
Duncan Murdoch8bc96222019-04-29 12:46:39 -0400457 if (!is.null(latex_column_spec))
Hao Zhu33b865f2020-08-18 02:10:43 -0400458 x <- latex_column_spec
Hao Zhua73601b2017-08-19 15:31:51 -0400459
Hao Zhu32f43f72017-06-20 18:24:54 -0400460 return(x)
461}
Hao Zhuae80df42018-04-12 15:45:11 -0400462
463replace_makecell_with_newline <- function(kable_input, table_info, column) {
464 if (!str_detect(kable_input, "makecell")) return(list(kable_input, table_info))
465 contents_table <- data.frame(sapply(table_info$contents,
Hao Zhu33b865f2020-08-18 02:10:43 -0400466 function(x) {str_split(x, " \\& ")[[1]]}),
467 stringsAsFactors = F)
Hao Zhuae80df42018-04-12 15:45:11 -0400468 names(contents_table) <- paste0("x", 1:table_info$nrow)
469 rows_check_makecell <- str_detect(contents_table[column, ], "makecell")
470 if (sum(rows_check_makecell) == 0) return(list(kable_input, table_info))
471 rows_to_replace <- which(rows_check_makecell)
472
473 for (i in column) {
474 target_column <- contents_table[i, ]
475 for (j in which(str_detect(target_column, "\\\\\\\\makecell"))) {
476 contents_table[i, j] <- str_replace(
477 contents_table[i, j], "\\\\\\\\makecell\\\\\\[.\\\\\\]\\\\\\{", "")
478 contents_table[i, j] <- str_replace(
Hao Zhu9ac3e382018-04-12 18:56:32 -0400479 contents_table[i, j], "\\\\\\}$", "")
Hao Zhuae80df42018-04-12 15:45:11 -0400480 contents_table[i, j] <- str_replace_all(
481 contents_table[i, j], "\\\\\\\\\\\\\\\\", "\\\\\\\\newline "
482 )
483 }
484 }
485
486 new_contents <- unlist(lapply(contents_table, paste, collapse = " & "))
487 for (i in rows_to_replace) {
488 kable_input <- sub(table_info$contents[i], new_contents[i], kable_input,
489 perl = T)
490 table_info$contents[i] <- new_contents[i]
491 }
492
493 return(list(kable_input, table_info))
494}
Hao Zhu33b865f2020-08-18 02:10:43 -0400495
496latex_cell_builder <- function(target_row, column, table_info,
497 bold, italic, monospace,
498 underline, strikeout,
499 color, background, link
500 # font_size, angle
501 ) {
502 new_row <- latex_row_cells(target_row)[[1]]
503 if (bold) {
504 new_row[column] <- paste0("\\\\textbf\\{", new_row[column], "\\}")
505 }
506 if (italic) {
507 new_row[column] <- paste0("\\\\em\\{", new_row[column], "\\}")
508 }
509 if (monospace) {
510 new_row[column] <- paste0("\\\\ttfamily\\{", new_row[column], "\\}")
511 }
512 if (underline) {
513 new_row[column] <- paste0("\\\\underline\\{", new_row[column], "\\}")
514 }
515 if (strikeout) {
516 new_row[column] <- paste0("\\\\sout\\{", new_row[column], "\\}")
517 }
518 if (!is.null(color)) {
519 new_row[column] <- paste0("\\\\textcolor", latex_color(color), "\\{",
520 new_row[column], "\\}")
521 }
522 # if (!is.null(font_size)) {
523 # new_row[column] <- paste0("\\\\begingroup\\\\fontsize\\{", font_size, "\\}\\{",
524 # as.numeric(font_size) + 2,
525 # "\\}\\\\selectfont ", new_row[column], "\\\\endgroup")
526 # }
527 # if (!is.null(angle)) {
528 # new_row[column] <- paste0("\\\\rotatebox\\{", angle, "\\}\\{",
529 # new_row[column], "\\}")
530 # }
531 if (!is.null(background)) {
532 new_row[column] <- paste0("\\\\cellcolor", latex_color(background), "\\{",
533 new_row[column], "\\}")
534 }
535
536 if (!is.null(link)) {
537 new_row[column] <- paste0("\\\\href\\{", escape_latex(link), "\\}\\{",
538 new_row[column], "\\}")
539 }
540
541 new_row <- paste(new_row, collapse = " & ")
542
543 return(new_row)
544}