blob: 8e0c554cd60f553bf27e80fbbcb09ec93c17ed7f [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".
10#' @param bold A T/F value to control whether the text of the selected column
11#' need to be bolded.
12#' @param italic A T/F value to control whether the text of the selected column
13#' need to be emphasized.
Hao Zhu8f202992017-07-15 02:20:18 -040014#' @param monospace A T/F value to control whether the text of the selected column
15#' need to be monospaced (verbatim)
Hao Zhu53e240f2017-09-04 20:04:29 -040016#' @param color A character string for column text color. Here please pay
17#' attention to the differences in color codes between HTML and LaTeX.
18#' @param background A character string for column background color. Here please
19#' pay attention to the differences in color codes between HTML and LaTeX.
20#' @param border_left A logical variable indicating whether there should be a
21#' border line on the left of the selected column. In HTML, you can also pass
22#' in a character string for the CSS of the border line
23#' @param border_right A logical variable indicating whether there should be a
24#' border line on the right of the selected column. In HTML, you can also pass
25#' in a character string for the CSS of the border line
Hao Zhu78e61222017-05-24 20:53:35 -040026#'
27#' @examples x <- knitr::kable(head(mtcars), "html")
Hao Zhu4840bc92017-09-15 15:55:05 -040028#' column_spec(x, 1:2, width = "20em", bold = TRUE, italic = TRUE)
Hao Zhu78e61222017-05-24 20:53:35 -040029#'
Hao Zhubff01912017-05-23 18:05:00 -040030#' @export
Hao Zhu322de082017-09-11 19:25:29 -040031column_spec <- function(kable_input, column,
Hao Zhu8f202992017-07-15 02:20:18 -040032 width = NULL, bold = FALSE, italic = FALSE,
Hao Zhuec7ab922017-08-19 22:56:44 -040033 monospace = FALSE, color = NULL, background = NULL,
Hao Zhu4840bc92017-09-15 15:55:05 -040034 border_left = FALSE, border_right = FALSE) {
Hao Zhu322de082017-09-11 19:25:29 -040035 if (!is.numeric(column)) {
36 stop("column must be numeric. ")
Hao Zhubff01912017-05-23 18:05:00 -040037 }
38 kable_format <- attr(kable_input, "format")
39 if (!kable_format %in% c("html", "latex")) {
40 message("Currently generic markdown table using pandoc is not supported.")
41 return(kable_input)
42 }
43 if (kable_format == "html") {
Hao Zhu322de082017-09-11 19:25:29 -040044 return(column_spec_html(kable_input, column, width,
Hao Zhu669bcd22017-08-19 14:53:40 -040045 bold, italic, monospace,
Hao Zhuec7ab922017-08-19 22:56:44 -040046 color, background,
47 border_left, border_right))
Hao Zhubff01912017-05-23 18:05:00 -040048 }
49 if (kable_format == "latex") {
Hao Zhu322de082017-09-11 19:25:29 -040050 return(column_spec_latex(kable_input, column, width,
Hao Zhu669bcd22017-08-19 14:53:40 -040051 bold, italic, monospace,
Hao Zhuec7ab922017-08-19 22:56:44 -040052 color, background,
Hao Zhu4840bc92017-09-15 15:55:05 -040053 border_left, border_right))
Hao Zhubff01912017-05-23 18:05:00 -040054 }
55}
56
Hao Zhu322de082017-09-11 19:25:29 -040057column_spec_html <- function(kable_input, column, width,
Hao Zhu669bcd22017-08-19 14:53:40 -040058 bold, italic, monospace,
Hao Zhuec7ab922017-08-19 22:56:44 -040059 color, background,
60 border_left, border_right) {
Hao Zhubff01912017-05-23 18:05:00 -040061 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -040062 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhubff01912017-05-23 18:05:00 -040063 kable_tbody <- xml_tpart(kable_xml, "tbody")
64
65 group_header_rows <- attr(kable_input, "group_header_rows")
Hao Zhu9b43f622017-09-11 19:00:08 -040066 all_contents_rows <- seq(1, length(xml_children(kable_tbody)))
Hao Zhu32f43f72017-06-20 18:24:54 -040067
Hao Zhubff01912017-05-23 18:05:00 -040068 if (!is.null(group_header_rows)) {
69 all_contents_rows <- all_contents_rows[!all_contents_rows %in%
70 group_header_rows]
71 }
72
Hao Zhuec7ab922017-08-19 22:56:44 -040073 # Border css
74 border_l_css <- "1px solid"
75 border_r_css <- "1px solid"
76 if (is.character(border_left)) {
77 border_l_css <- border_left
78 border_left <- T
79 }
80 if (is.character(border_right)) {
81 border_r_css <- border_right
82 border_right <- T
83 }
84
Hao Zhubff01912017-05-23 18:05:00 -040085 for (i in all_contents_rows) {
Hao Zhu322de082017-09-11 19:25:29 -040086 for (j in column) {
Hao Zhu9b43f622017-09-11 19:00:08 -040087 target_cell <- xml_child(xml_child(kable_tbody, i), j)
88 if (!is.null(width)) {
89 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
90 "width: ", width, "; ")
91 }
92 if (bold) {
93 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
94 "font-weight: bold;")
95 }
96 if (italic) {
97 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
98 "font-style: italic;")
99 }
100 if (monospace) {
101 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
102 "font-family: monospace;")
103 }
104 if (!is.null(color)) {
105 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
106 "color: ", color, ";")
107 }
108 if (!is.null(background)) {
109 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
110 "background-color: ",
111 background, ";")
112 }
113 if (border_left) {
114 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
115 "border-left:", border_l_css, ";")
116 }
117 if (border_right) {
118 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
119 "border-right:", border_r_css, ";")
120 }
Hao Zhuec7ab922017-08-19 22:56:44 -0400121 }
Hao Zhubff01912017-05-23 18:05:00 -0400122 }
Hao Zhuf2dfd142017-07-24 14:43:28 -0400123 out <- as_kable_xml(kable_xml)
Hao Zhubff01912017-05-23 18:05:00 -0400124 attributes(out) <- kable_attrs
125 return(out)
126}
127
Hao Zhu322de082017-09-11 19:25:29 -0400128column_spec_latex <- function(kable_input, column, width,
Hao Zhua73601b2017-08-19 15:31:51 -0400129 bold, italic, monospace,
Hao Zhuec7ab922017-08-19 22:56:44 -0400130 color, background,
Hao Zhu4840bc92017-09-15 15:55:05 -0400131 border_left, border_right) {
Hao Zhubff01912017-05-23 18:05:00 -0400132 table_info <- magic_mirror(kable_input)
Hao Zhuf4b35292017-06-25 22:38:37 -1000133 if (!is.null(table_info$collapse_rows)) {
134 message("Usually it is recommended to use column_spec before collapse_rows,",
135 " especially in LaTeX, to get a desired result. ")
136 }
Hao Zhubff01912017-05-23 18:05:00 -0400137 align_collapse <- ifelse(table_info$booktabs, "", "\\|")
138 kable_align_old <- paste(table_info$align_vector, collapse = align_collapse)
139
Hao Zhu322de082017-09-11 19:25:29 -0400140 table_info$align_vector[column] <- unlist(lapply(
141 table_info$align_vector_origin[column],
Hao Zhu6ea2afd2017-09-11 18:30:49 -0400142 function(x) {
143 latex_column_align_builder(
144 x, width, bold, italic, monospace,
145 color, background, border_left, border_right)
146 }
147 ))
Hao Zhubff01912017-05-23 18:05:00 -0400148
149 kable_align_new <- paste(table_info$align_vector, collapse = align_collapse)
150
Hao Zhud2c0f732017-08-26 10:40:14 -0400151 out <- sub(kable_align_old, kable_align_new,
152 enc2utf8(as.character(kable_input)),
Hao Zhubff01912017-05-23 18:05:00 -0400153 perl = T)
154 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhuf4b35292017-06-25 22:38:37 -1000155 if (!is.null(width)) {
156 if (is.null(table_info$column_width)) {
157 table_info$column_width <- list()
158 }
Hao Zhu322de082017-09-11 19:25:29 -0400159 for (i in column) {
Hao Zhu9b43f622017-09-11 19:00:08 -0400160 table_info$column_width[[paste0("column_", i)]] <- width
161 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000162 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400163 attr(out, "kable_meta") <- table_info
Hao Zhubff01912017-05-23 18:05:00 -0400164 return(out)
165}
Hao Zhu32f43f72017-06-20 18:24:54 -0400166
Hao Zhua73601b2017-08-19 15:31:51 -0400167latex_column_align_builder <- function(x, width, bold, italic, monospace,
Hao Zhuec7ab922017-08-19 22:56:44 -0400168 color, background,
169 border_left, border_right) {
Hao Zhu32f43f72017-06-20 18:24:54 -0400170 extra_align <- ""
171 if (!is.null(width)) {
172 extra_align <- switch(x,
Hao Zhubf5bfe22017-06-21 14:37:41 -0400173 "l" = "\\\\raggedright\\\\arraybackslash",
174 "c" = "\\\\centering\\\\arraybackslash",
175 "r" = "\\\\raggedleft\\\\arraybackslash")
Hao Zhu32f43f72017-06-20 18:24:54 -0400176 x <- paste0("p\\{", width, "\\}")
177 }
178
Hao Zhua73601b2017-08-19 15:31:51 -0400179 if (!is.null(color)) {
180 color <- sprintf("\\\\color{%s}", color)
Hao Zhu32f43f72017-06-20 18:24:54 -0400181 }
182
Hao Zhuf2ebf9e2017-09-14 11:40:49 -0400183 if (!is.null(background)) {
Hao Zhuec7ab922017-08-19 22:56:44 -0400184 background <- sprintf("\\\\columncolor{%s}", background)
185 }
186
Hao Zhua73601b2017-08-19 15:31:51 -0400187 latex_array_options <- c("\\\\bfseries", "\\\\em", "\\\\ttfamily")[
188 c(bold, italic, monospace)]
Hao Zhuec7ab922017-08-19 22:56:44 -0400189 latex_array_options <- c(latex_array_options, extra_align,
190 color, background)
Hao Zhua73601b2017-08-19 15:31:51 -0400191 latex_array_options <- paste0(
192 "\\>\\{", paste(latex_array_options, collapse = ""), "\\}"
193 )
194 x <- paste0(latex_array_options, x)
Hao Zhuec7ab922017-08-19 22:56:44 -0400195 if (border_left) {
196 x <- paste0("|", x)
197 }
198 if (border_right) {
199 x <- paste0(x, "|")
200 }
Hao Zhua73601b2017-08-19 15:31:51 -0400201
Hao Zhu32f43f72017-06-20 18:24:54 -0400202 return(x)
203}