blob: da8252c997afa7703204678ebbd401c754b7b52a [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 Zhuef0c8302018-01-12 13:30:20 -050016#' @param underline A T/F value to control whether the text of the selected row
17#' need to be underlined
18#' @param strikeout A T/F value to control whether the text of the selected row
19#' need to be stricked out.
Hao Zhu53e240f2017-09-04 20:04:29 -040020#' @param color A character string for column text color. Here please pay
21#' attention to the differences in color codes between HTML and LaTeX.
22#' @param background A character string for column background color. Here please
23#' 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 Zhub1de9672018-01-08 16:29:24 -050030#' @param extra_css Extra css text to be passed into the cells of the row. Note
31#' that it's not for the whole column but to each individual cells
Hao Zhu78e61222017-05-24 20:53:35 -040032#'
33#' @examples x <- knitr::kable(head(mtcars), "html")
Hao Zhu4840bc92017-09-15 15:55:05 -040034#' column_spec(x, 1:2, width = "20em", bold = TRUE, italic = TRUE)
Hao Zhu78e61222017-05-24 20:53:35 -040035#'
Hao Zhubff01912017-05-23 18:05:00 -040036#' @export
Hao Zhu322de082017-09-11 19:25:29 -040037column_spec <- function(kable_input, column,
Hao Zhu8f202992017-07-15 02:20:18 -040038 width = NULL, bold = FALSE, italic = FALSE,
Hao Zhuef0c8302018-01-12 13:30:20 -050039 monospace = FALSE, underline = FALSE, strikeout = FALSE,
40 color = NULL, background = NULL,
Hao Zhub1de9672018-01-08 16:29:24 -050041 border_left = FALSE, border_right = FALSE,
42 extra_css = NULL) {
Hao Zhu322de082017-09-11 19:25:29 -040043 if (!is.numeric(column)) {
44 stop("column must be numeric. ")
Hao Zhubff01912017-05-23 18:05:00 -040045 }
46 kable_format <- attr(kable_input, "format")
47 if (!kable_format %in% c("html", "latex")) {
48 message("Currently generic markdown table using pandoc is not supported.")
49 return(kable_input)
50 }
51 if (kable_format == "html") {
Hao Zhu322de082017-09-11 19:25:29 -040052 return(column_spec_html(kable_input, column, width,
Hao Zhu669bcd22017-08-19 14:53:40 -040053 bold, italic, monospace,
Hao Zhuef0c8302018-01-12 13:30:20 -050054 underline, strikeout,
Hao Zhuec7ab922017-08-19 22:56:44 -040055 color, background,
Hao Zhub1de9672018-01-08 16:29:24 -050056 border_left, border_right, extra_css))
Hao Zhubff01912017-05-23 18:05:00 -040057 }
58 if (kable_format == "latex") {
Hao Zhu322de082017-09-11 19:25:29 -040059 return(column_spec_latex(kable_input, column, width,
Hao Zhu669bcd22017-08-19 14:53:40 -040060 bold, italic, monospace,
Hao Zhuef0c8302018-01-12 13:30:20 -050061 underline, strikeout,
Hao Zhuec7ab922017-08-19 22:56:44 -040062 color, background,
Hao Zhu4840bc92017-09-15 15:55:05 -040063 border_left, border_right))
Hao Zhubff01912017-05-23 18:05:00 -040064 }
65}
66
Hao Zhu322de082017-09-11 19:25:29 -040067column_spec_html <- function(kable_input, column, width,
Hao Zhu669bcd22017-08-19 14:53:40 -040068 bold, italic, monospace,
Hao Zhuef0c8302018-01-12 13:30:20 -050069 underline, strikeout,
Hao Zhuec7ab922017-08-19 22:56:44 -040070 color, background,
Hao Zhub1de9672018-01-08 16:29:24 -050071 border_left, border_right, extra_css) {
Hao Zhubff01912017-05-23 18:05:00 -040072 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -040073 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhubff01912017-05-23 18:05:00 -040074 kable_tbody <- xml_tpart(kable_xml, "tbody")
75
76 group_header_rows <- attr(kable_input, "group_header_rows")
Hao Zhu9b43f622017-09-11 19:00:08 -040077 all_contents_rows <- seq(1, length(xml_children(kable_tbody)))
Hao Zhu32f43f72017-06-20 18:24:54 -040078
Hao Zhubff01912017-05-23 18:05:00 -040079 if (!is.null(group_header_rows)) {
80 all_contents_rows <- all_contents_rows[!all_contents_rows %in%
81 group_header_rows]
82 }
83
Hao Zhuec7ab922017-08-19 22:56:44 -040084 # Border css
85 border_l_css <- "1px solid"
86 border_r_css <- "1px solid"
87 if (is.character(border_left)) {
88 border_l_css <- border_left
89 border_left <- T
90 }
91 if (is.character(border_right)) {
92 border_r_css <- border_right
93 border_right <- T
94 }
95
Hao Zhubff01912017-05-23 18:05:00 -040096 for (i in all_contents_rows) {
Hao Zhu322de082017-09-11 19:25:29 -040097 for (j in column) {
Hao Zhu9b43f622017-09-11 19:00:08 -040098 target_cell <- xml_child(xml_child(kable_tbody, i), j)
99 if (!is.null(width)) {
100 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
Hao Zhu6a14e882017-10-31 17:04:12 -0400101 "width: ", width, "; ")
Hao Zhu9b43f622017-09-11 19:00:08 -0400102 }
103 if (bold) {
104 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
105 "font-weight: bold;")
106 }
107 if (italic) {
108 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
109 "font-style: italic;")
110 }
111 if (monospace) {
112 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
113 "font-family: monospace;")
114 }
Hao Zhuef0c8302018-01-12 13:30:20 -0500115 if (underline) {
116 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
Hao Zhub49bddf2018-01-12 15:25:23 -0500117 "text-decoration: underline;")
Hao Zhuef0c8302018-01-12 13:30:20 -0500118 }
119 if (strikeout) {
120 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
Hao Zhub49bddf2018-01-12 15:25:23 -0500121 "text-decoration: line-through;")
Hao Zhuef0c8302018-01-12 13:30:20 -0500122 }
Hao Zhu9b43f622017-09-11 19:00:08 -0400123 if (!is.null(color)) {
124 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
125 "color: ", color, ";")
126 }
127 if (!is.null(background)) {
128 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
129 "background-color: ",
130 background, ";")
131 }
132 if (border_left) {
133 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
134 "border-left:", border_l_css, ";")
135 }
136 if (border_right) {
137 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
138 "border-right:", border_r_css, ";")
139 }
Hao Zhub1de9672018-01-08 16:29:24 -0500140 if (!is.null(extra_css)) {
141 xml_attr(target_cell, "style") <- paste0(xml_attr(target_cell, "style"),
142 extra_css)
143 }
Hao Zhuec7ab922017-08-19 22:56:44 -0400144 }
Hao Zhubff01912017-05-23 18:05:00 -0400145 }
Hao Zhu6a14e882017-10-31 17:04:12 -0400146
147
Hao Zhuf2dfd142017-07-24 14:43:28 -0400148 out <- as_kable_xml(kable_xml)
Hao Zhubff01912017-05-23 18:05:00 -0400149 attributes(out) <- kable_attrs
Hao Zhuf2100832018-01-11 16:20:29 -0500150 if (!"kableExtra" %in% class(out)) class(out) <- c("kableExtra", class(out))
Hao Zhubff01912017-05-23 18:05:00 -0400151 return(out)
152}
153
Hao Zhu322de082017-09-11 19:25:29 -0400154column_spec_latex <- function(kable_input, column, width,
Hao Zhua73601b2017-08-19 15:31:51 -0400155 bold, italic, monospace,
Hao Zhuef0c8302018-01-12 13:30:20 -0500156 underline, strikeout,
Hao Zhuec7ab922017-08-19 22:56:44 -0400157 color, background,
Hao Zhu4840bc92017-09-15 15:55:05 -0400158 border_left, border_right) {
Hao Zhubff01912017-05-23 18:05:00 -0400159 table_info <- magic_mirror(kable_input)
Hao Zhuf4b35292017-06-25 22:38:37 -1000160 if (!is.null(table_info$collapse_rows)) {
161 message("Usually it is recommended to use column_spec before collapse_rows,",
162 " especially in LaTeX, to get a desired result. ")
163 }
Hao Zhubff01912017-05-23 18:05:00 -0400164 align_collapse <- ifelse(table_info$booktabs, "", "\\|")
165 kable_align_old <- paste(table_info$align_vector, collapse = align_collapse)
166
Hao Zhu322de082017-09-11 19:25:29 -0400167 table_info$align_vector[column] <- unlist(lapply(
168 table_info$align_vector_origin[column],
Hao Zhu6ea2afd2017-09-11 18:30:49 -0400169 function(x) {
170 latex_column_align_builder(
Hao Zhuef0c8302018-01-12 13:30:20 -0500171 x, width, bold, italic, monospace, underline, strikeout,
Hao Zhu6ea2afd2017-09-11 18:30:49 -0400172 color, background, border_left, border_right)
173 }
174 ))
Hao Zhubff01912017-05-23 18:05:00 -0400175
176 kable_align_new <- paste(table_info$align_vector, collapse = align_collapse)
177
Hao Zhud2c0f732017-08-26 10:40:14 -0400178 out <- sub(kable_align_old, kable_align_new,
179 enc2utf8(as.character(kable_input)),
Hao Zhubff01912017-05-23 18:05:00 -0400180 perl = T)
181 out <- structure(out, format = "latex", class = "knitr_kable")
Hao Zhuf4b35292017-06-25 22:38:37 -1000182 if (!is.null(width)) {
183 if (is.null(table_info$column_width)) {
184 table_info$column_width <- list()
185 }
Hao Zhu322de082017-09-11 19:25:29 -0400186 for (i in column) {
Hao Zhu9b43f622017-09-11 19:00:08 -0400187 table_info$column_width[[paste0("column_", i)]] <- width
188 }
Hao Zhuf4b35292017-06-25 22:38:37 -1000189 }
Hao Zhu32f43f72017-06-20 18:24:54 -0400190 attr(out, "kable_meta") <- table_info
Hao Zhubff01912017-05-23 18:05:00 -0400191 return(out)
192}
Hao Zhu32f43f72017-06-20 18:24:54 -0400193
Hao Zhua73601b2017-08-19 15:31:51 -0400194latex_column_align_builder <- function(x, width, bold, italic, monospace,
Hao Zhuef0c8302018-01-12 13:30:20 -0500195 underline, strikeout,
Hao Zhuec7ab922017-08-19 22:56:44 -0400196 color, background,
197 border_left, border_right) {
Hao Zhu32f43f72017-06-20 18:24:54 -0400198 extra_align <- ""
199 if (!is.null(width)) {
200 extra_align <- switch(x,
Hao Zhubf5bfe22017-06-21 14:37:41 -0400201 "l" = "\\\\raggedright\\\\arraybackslash",
202 "c" = "\\\\centering\\\\arraybackslash",
203 "r" = "\\\\raggedleft\\\\arraybackslash")
Hao Zhu32f43f72017-06-20 18:24:54 -0400204 x <- paste0("p\\{", width, "\\}")
205 }
206
Hao Zhua73601b2017-08-19 15:31:51 -0400207 if (!is.null(color)) {
Stefanie LaZerte994fc562017-12-11 14:14:07 -0600208 color <- paste0("\\\\leavevmode\\\\color", latex_color(color))
Hao Zhu32f43f72017-06-20 18:24:54 -0400209 }
210
Hao Zhuf2ebf9e2017-09-14 11:40:49 -0400211 if (!is.null(background)) {
Hao Zhu915b1b22017-11-09 14:01:44 -0500212 background <- paste0("\\\\columncolor", latex_color(background))
Hao Zhuec7ab922017-08-19 22:56:44 -0400213 }
214
Hao Zhuef0c8302018-01-12 13:30:20 -0500215 latex_array_options <- c("\\\\bfseries", "\\\\em", "\\\\ttfamily",
216 "\\\\underline", "\\\\sout")[
Hao Zhub49bddf2018-01-12 15:25:23 -0500217 c(bold, italic, monospace, underline, strikeout)]
Hao Zhuec7ab922017-08-19 22:56:44 -0400218 latex_array_options <- c(latex_array_options, extra_align,
219 color, background)
Hao Zhua73601b2017-08-19 15:31:51 -0400220 latex_array_options <- paste0(
221 "\\>\\{", paste(latex_array_options, collapse = ""), "\\}"
222 )
223 x <- paste0(latex_array_options, x)
Hao Zhuec7ab922017-08-19 22:56:44 -0400224 if (border_left) {
Hao Zhub49bddf2018-01-12 15:25:23 -0500225 x <- paste0("\\|", x)
Hao Zhuec7ab922017-08-19 22:56:44 -0400226 }
227 if (border_right) {
Hao Zhub49bddf2018-01-12 15:25:23 -0500228 x <- paste0(x, "\\|")
Hao Zhuec7ab922017-08-19 22:56:44 -0400229 }
Hao Zhua73601b2017-08-19 15:31:51 -0400230
Hao Zhu32f43f72017-06-20 18:24:54 -0400231 return(x)
232}