blob: e13e685953ebc91730e30fb2e918016d33581c5a [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 Zhu8f202992017-07-15 02:20:18 -040017#' @param monospace A T/F value to control whether the text of the selected column
18#' need to be monospaced (verbatim)
Hao Zhu78e61222017-05-24 20:53:35 -040019#'
20#' @examples x <- knitr::kable(head(mtcars), "html")
21#' column_spec(x, 1, width = "20em", bold = TRUE, italic = TRUE)
22#'
Hao Zhubff01912017-05-23 18:05:00 -040023#' @export
Hao Zhuf13a35e2017-05-24 00:55:43 -040024column_spec <- function(kable_input, column,
Hao Zhu8f202992017-07-15 02:20:18 -040025 width = NULL, bold = FALSE, italic = FALSE,
Hao Zhu669bcd22017-08-19 14:53:40 -040026 monospace = FALSE, color = NULL, background = NULL) {
Hao Zhubff01912017-05-23 18:05:00 -040027 if (!is.numeric(column)) {
28 stop("column must be a numeric value")
29 }
30 kable_format <- attr(kable_input, "format")
31 if (!kable_format %in% c("html", "latex")) {
32 message("Currently generic markdown table using pandoc is not supported.")
33 return(kable_input)
34 }
35 if (kable_format == "html") {
Hao Zhu669bcd22017-08-19 14:53:40 -040036 return(column_spec_html(kable_input, column, width,
37 bold, italic, monospace,
38 color, background))
Hao Zhubff01912017-05-23 18:05:00 -040039 }
40 if (kable_format == "latex") {
Hao Zhu669bcd22017-08-19 14:53:40 -040041 return(column_spec_latex(kable_input, column, width,
42 bold, italic, monospace,
43 color, background))
Hao Zhubff01912017-05-23 18:05:00 -040044 }
45}
46
Hao Zhu669bcd22017-08-19 14:53:40 -040047column_spec_html <- function(kable_input, column, width,
48 bold, italic, monospace,
49 color, background) {
Hao Zhubff01912017-05-23 18:05:00 -040050 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -040051 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhubff01912017-05-23 18:05:00 -040052 kable_tbody <- xml_tpart(kable_xml, "tbody")
53
54 group_header_rows <- attr(kable_input, "group_header_rows")
Hao Zhu32f43f72017-06-20 18:24:54 -040055 if (is.null(kable_attrs$column_adjust)) {
56 all_contents_rows <- seq(1, length(xml_children(kable_tbody)))
57 all_contents_array <- rep(column, length(all_contents_rows))
58 } else {
59 column <- column + kable_attrs$column_adjust$count
60 all_contents_array <- colSums(kable_attrs$column_adjust$matrix[1:column, ])
61 all_contents_rows <- which(all_contents_array != 0 &
62 kable_attrs$column_adjust$matrix[column, ])
63 }
64
Hao Zhubff01912017-05-23 18:05:00 -040065 if (!is.null(group_header_rows)) {
66 all_contents_rows <- all_contents_rows[!all_contents_rows %in%
67 group_header_rows]
68 }
69
70 for (i in all_contents_rows) {
Hao Zhu32f43f72017-06-20 18:24:54 -040071 target_cell <- xml_child(xml_child(kable_tbody, i), all_contents_array[i])
Hao Zhubff01912017-05-23 18:05:00 -040072 if (!is.null(width)) {
73 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
74 "width: ", width, "; ")
75 }
76 if (bold) {
77 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
78 "font-weight: bold;")
79 }
80 if (italic) {
81 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
82 "font-style: italic;")
83 }
Hao Zhu8f202992017-07-15 02:20:18 -040084 if (monospace) {
85 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
86 "font-family: monospace;")
87 }
Hao Zhu669bcd22017-08-19 14:53:40 -040088 if (!is.null(color)) {
89 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
90 "color: ", color, ";")
91 }
92 if (!is.null(background)) {
93 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
94 "background-color: ",
95 background, ";")
96 }
Hao Zhubff01912017-05-23 18:05:00 -040097 }
Hao Zhuf2dfd142017-07-24 14:43:28 -040098 out <- as_kable_xml(kable_xml)
Hao Zhubff01912017-05-23 18:05:00 -040099 attributes(out) <- kable_attrs
100 return(out)
101}
102
Hao Zhu8f202992017-07-15 02:20:18 -0400103column_spec_latex <- function(kable_input, column, width, bold, italic, monospace) {
Hao Zhubff01912017-05-23 18:05:00 -0400104 table_info <- magic_mirror(kable_input)
Hao Zhuf4b35292017-06-25 22:38:37 -1000105 if (!is.null(table_info$collapse_rows)) {
106 message("Usually it is recommended to use column_spec before collapse_rows,",
107 " especially in LaTeX, to get a desired result. ")
108 }
Hao Zhubff01912017-05-23 18:05:00 -0400109 align_collapse <- ifelse(table_info$booktabs, "", "\\|")
110 kable_align_old <- paste(table_info$align_vector, collapse = align_collapse)
111
Hao Zhu32f43f72017-06-20 18:24:54 -0400112 table_info$align_vector[column] <- latex_column_align_builder(
Hao Zhu8f202992017-07-15 02:20:18 -0400113 table_info$align_vector[column], width, bold, italic, monospace)
Hao Zhubff01912017-05-23 18:05:00 -0400114
115 kable_align_new <- paste(table_info$align_vector, collapse = align_collapse)
116
117 out <- sub(kable_align_old, kable_align_new, as.character(kable_input),
118 perl = T)
119 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhuf4b35292017-06-25 22:38:37 -1000120 if (!is.null(width)) {
121 if (is.null(table_info$column_width)) {
122 table_info$column_width <- list()
123 }
124 table_info$column_width[[paste0("column_", column)]] <- width
125 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400126 attr(out, "kable_meta") <- table_info
Hao Zhubff01912017-05-23 18:05:00 -0400127 return(out)
128}
Hao Zhu32f43f72017-06-20 18:24:54 -0400129
Hao Zhu8f202992017-07-15 02:20:18 -0400130latex_column_align_builder <- function(x, width, bold, italic, monospace) {
Hao Zhu32f43f72017-06-20 18:24:54 -0400131 extra_align <- ""
132 if (!is.null(width)) {
133 extra_align <- switch(x,
Hao Zhubf5bfe22017-06-21 14:37:41 -0400134 "l" = "\\\\raggedright\\\\arraybackslash",
135 "c" = "\\\\centering\\\\arraybackslash",
136 "r" = "\\\\raggedleft\\\\arraybackslash")
Hao Zhu32f43f72017-06-20 18:24:54 -0400137 x <- paste0("p\\{", width, "\\}")
138 }
139
Hao Zhu8f202992017-07-15 02:20:18 -0400140 if (bold | italic | monospace | extra_align != "") {
141 latex_array_options <- c("\\\\bfseries", "\\\\em", "\\\\ttfamily")[
142 c(bold, italic, monospace)]
Hao Zhu32f43f72017-06-20 18:24:54 -0400143 latex_array_options <- c(latex_array_options, extra_align)
144 latex_array_options <- paste0(
145 "\\>\\{", paste(latex_array_options, collapse = ""), "\\}"
146 )
147 x <- paste0(latex_array_options, x)
148 }
149
150 return(x)
151}