blob: 851861a401b862dda5387c68e1b85dceeb9baa98 [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
4#' its look. Right now it supports the following three properties: column width,
5#' bold text and italic text.
6#'
7#' @param kable_input Output of `knitr::kable()` with `format` specified
Hao Zhubf5bfe22017-06-21 14:37:41 -04008#' @param column A numeric value indicating which column to be selected. When
9#' you do the counting, ignore the extra header columns you added through
10#' add_header_left.
Hao Zhubff01912017-05-23 18:05:00 -040011#' @param width A character string telling HTML & LaTeX how wide the column
12#' needs to be, e.g. "10cm", "3in" or "30em".
13#' @param bold A T/F value to control whether the text of the selected column
14#' need to be bolded.
15#' @param italic A T/F value to control whether the text of the selected column
16#' need to be emphasized.
Hao Zhu78e61222017-05-24 20:53:35 -040017#'
18#' @examples x <- knitr::kable(head(mtcars), "html")
19#' column_spec(x, 1, width = "20em", bold = TRUE, italic = TRUE)
20#'
Hao Zhubff01912017-05-23 18:05:00 -040021#' @export
Hao Zhuf13a35e2017-05-24 00:55:43 -040022column_spec <- function(kable_input, column,
Hao Zhu78e61222017-05-24 20:53:35 -040023 width = NULL, bold = FALSE, italic = FALSE) {
Hao Zhubff01912017-05-23 18:05:00 -040024 if (!is.numeric(column)) {
25 stop("column must be a numeric value")
26 }
27 kable_format <- attr(kable_input, "format")
28 if (!kable_format %in% c("html", "latex")) {
29 message("Currently generic markdown table using pandoc is not supported.")
30 return(kable_input)
31 }
32 if (kable_format == "html") {
33 return(column_spec_html(kable_input, column, width, bold, italic))
34 }
35 if (kable_format == "latex") {
36 return(column_spec_latex(kable_input, column, width, bold, italic))
37 }
38}
39
40column_spec_html <- function(kable_input, column, width, bold, italic) {
41 kable_attrs <- attributes(kable_input)
42 kable_xml <- read_xml(as.character(kable_input), options = "COMPACT")
43 kable_tbody <- xml_tpart(kable_xml, "tbody")
44
45 group_header_rows <- attr(kable_input, "group_header_rows")
Hao Zhu32f43f72017-06-20 18:24:54 -040046 if (is.null(kable_attrs$column_adjust)) {
47 all_contents_rows <- seq(1, length(xml_children(kable_tbody)))
48 all_contents_array <- rep(column, length(all_contents_rows))
49 } else {
50 column <- column + kable_attrs$column_adjust$count
51 all_contents_array <- colSums(kable_attrs$column_adjust$matrix[1:column, ])
52 all_contents_rows <- which(all_contents_array != 0 &
53 kable_attrs$column_adjust$matrix[column, ])
54 }
55
Hao Zhubff01912017-05-23 18:05:00 -040056 if (!is.null(group_header_rows)) {
57 all_contents_rows <- all_contents_rows[!all_contents_rows %in%
58 group_header_rows]
59 }
60
61 for (i in all_contents_rows) {
Hao Zhu32f43f72017-06-20 18:24:54 -040062 target_cell <- xml_child(xml_child(kable_tbody, i), all_contents_array[i])
Hao Zhubff01912017-05-23 18:05:00 -040063 if (!is.null(width)) {
64 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
65 "width: ", width, "; ")
66 }
67 if (bold) {
68 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
69 "font-weight: bold;")
70 }
71 if (italic) {
72 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
73 "font-style: italic;")
74 }
75 }
76 out <- structure(as.character(kable_xml), format = "html",
77 class = "knitr_kable")
78 attributes(out) <- kable_attrs
79 return(out)
80}
81
82column_spec_latex <- function(kable_input, column, width, bold, italic) {
83 table_info <- magic_mirror(kable_input)
84 align_collapse <- ifelse(table_info$booktabs, "", "\\|")
85 kable_align_old <- paste(table_info$align_vector, collapse = align_collapse)
86
Hao Zhu32f43f72017-06-20 18:24:54 -040087 table_info$align_vector[column] <- latex_column_align_builder(
88 table_info$align_vector[column], width, bold, italic)
Hao Zhubff01912017-05-23 18:05:00 -040089
90 kable_align_new <- paste(table_info$align_vector, collapse = align_collapse)
91
92 out <- sub(kable_align_old, kable_align_new, as.character(kable_input),
93 perl = T)
94 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhu32f43f72017-06-20 18:24:54 -040095 attr(out, "kable_meta") <- table_info
Hao Zhubff01912017-05-23 18:05:00 -040096 return(out)
97}
Hao Zhu32f43f72017-06-20 18:24:54 -040098
99latex_column_align_builder <- function(x, width, bold, italic) {
100 extra_align <- ""
101 if (!is.null(width)) {
102 extra_align <- switch(x,
Hao Zhubf5bfe22017-06-21 14:37:41 -0400103 "l" = "\\\\raggedright\\\\arraybackslash",
104 "c" = "\\\\centering\\\\arraybackslash",
105 "r" = "\\\\raggedleft\\\\arraybackslash")
Hao Zhu32f43f72017-06-20 18:24:54 -0400106 x <- paste0("p\\{", width, "\\}")
107 }
108
109 if (bold | italic | extra_align != "") {
110 latex_array_options <- c("\\\\bfseries", "\\\\em")[c(bold, italic)]
111 latex_array_options <- c(latex_array_options, extra_align)
112 latex_array_options <- paste0(
113 "\\>\\{", paste(latex_array_options, collapse = ""), "\\}"
114 )
115 x <- paste0(latex_array_options, x)
116 }
117
118 return(x)
119}