blob: 1e2f13a5dd3b04d34c09a953c9dfe8a3f0c84852 [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"),
Hao Zhua73601b2017-08-19 15:31:51 -040074 "width: ", width, "; ")
Hao Zhubff01912017-05-23 18:05:00 -040075 }
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 Zhua73601b2017-08-19 15:31:51 -0400103column_spec_latex <- function(kable_input, column, width,
104 bold, italic, monospace,
105 color, background) {
Hao Zhubff01912017-05-23 18:05:00 -0400106 table_info <- magic_mirror(kable_input)
Hao Zhuf4b35292017-06-25 22:38:37 -1000107 if (!is.null(table_info$collapse_rows)) {
108 message("Usually it is recommended to use column_spec before collapse_rows,",
109 " especially in LaTeX, to get a desired result. ")
110 }
Hao Zhua73601b2017-08-19 15:31:51 -0400111 if (!is.null(background)) {
112 warning("Column background color for LaTeX has not yet been implemented.")
113 }
Hao Zhubff01912017-05-23 18:05:00 -0400114 align_collapse <- ifelse(table_info$booktabs, "", "\\|")
115 kable_align_old <- paste(table_info$align_vector, collapse = align_collapse)
116
Hao Zhu32f43f72017-06-20 18:24:54 -0400117 table_info$align_vector[column] <- latex_column_align_builder(
Hao Zhua73601b2017-08-19 15:31:51 -0400118 table_info$align_vector[column], width, bold, italic, monospace,
119 color, background)
Hao Zhubff01912017-05-23 18:05:00 -0400120
121 kable_align_new <- paste(table_info$align_vector, collapse = align_collapse)
122
123 out <- sub(kable_align_old, kable_align_new, as.character(kable_input),
124 perl = T)
125 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhuf4b35292017-06-25 22:38:37 -1000126 if (!is.null(width)) {
127 if (is.null(table_info$column_width)) {
128 table_info$column_width <- list()
129 }
130 table_info$column_width[[paste0("column_", column)]] <- width
131 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400132 attr(out, "kable_meta") <- table_info
Hao Zhubff01912017-05-23 18:05:00 -0400133 return(out)
134}
Hao Zhu32f43f72017-06-20 18:24:54 -0400135
Hao Zhua73601b2017-08-19 15:31:51 -0400136latex_column_align_builder <- function(x, width, bold, italic, monospace,
137 color, background) {
Hao Zhu32f43f72017-06-20 18:24:54 -0400138 extra_align <- ""
139 if (!is.null(width)) {
140 extra_align <- switch(x,
Hao Zhubf5bfe22017-06-21 14:37:41 -0400141 "l" = "\\\\raggedright\\\\arraybackslash",
142 "c" = "\\\\centering\\\\arraybackslash",
143 "r" = "\\\\raggedleft\\\\arraybackslash")
Hao Zhu32f43f72017-06-20 18:24:54 -0400144 x <- paste0("p\\{", width, "\\}")
145 }
146
Hao Zhua73601b2017-08-19 15:31:51 -0400147 if (!is.null(color)) {
148 color <- sprintf("\\\\color{%s}", color)
Hao Zhu32f43f72017-06-20 18:24:54 -0400149 }
150
Hao Zhua73601b2017-08-19 15:31:51 -0400151 latex_array_options <- c("\\\\bfseries", "\\\\em", "\\\\ttfamily")[
152 c(bold, italic, monospace)]
153 latex_array_options <- c(latex_array_options, extra_align, color)
154 latex_array_options <- paste0(
155 "\\>\\{", paste(latex_array_options, collapse = ""), "\\}"
156 )
157 x <- paste0(latex_array_options, x)
158
Hao Zhu32f43f72017-06-20 18:24:54 -0400159 return(x)
160}