column_spec | R Documentation |
This function allows users to select a column and then specify its look.
column_spec(
kable_input,
column,
width = NULL,
bold = FALSE,
italic = FALSE,
monospace = FALSE,
underline = FALSE,
strikeout = FALSE,
color = NULL,
background = NULL,
border_left = FALSE,
border_right = FALSE,
width_min = NULL,
width_max = NULL,
extra_css = NULL,
include_thead = FALSE,
latex_column_spec = NULL,
latex_valign = "p",
link = NULL,
new_tab = TRUE,
tooltip = NULL,
popover = NULL,
image = NULL
)
kable_input |
Output of |
column |
A numeric value or vector indicating which column(s) to be selected. |
width |
A character string telling HTML & LaTeX how wide the column needs to be, e.g. "10cm", "3in" or "30em". |
bold |
T/F value or vector to control whether the text of the selected column need to be bolded. |
italic |
T/F value or vector to control whether the text of the selected column need to be emphasized. |
monospace |
T/F value or vector to control whether the text of the selected column need to be monospaced (verbatim) |
underline |
T/F value or vector to control whether the text of the selected row need to be underlined |
strikeout |
T/F value or vector to control whether the text of the selected row need to be struck out. |
color |
A character string or vector for column text color. Here please pay attention to the differences in color codes between HTML and LaTeX. |
background |
A character string or vector for column background color. Here please pay attention to the differences in color codes between HTML and LaTeX. |
border_left |
A logical variable indicating whether there should be a border line on the left of the selected column. In HTML, you can also pass in a character string for the CSS of the border line |
border_right |
A logical variable indicating whether there should be a border line on the right of the selected column. In HTML, you can also pass in a character string for the CSS of the border line |
width_min |
Only for HTML table. Normal column width will automatically
collapse when the window cannot hold enough contents. With this |
width_max |
Only for HTML table. |
extra_css |
A vector of extra css text to be passed into the cells of the column. |
include_thead |
T/F. A HTML only feature to control whether the
header row will be manipulated. Default is |
latex_column_spec |
Only for LaTeX tables. Code to replace the column
specification. If not |
latex_valign |
vertical alignment. Only works when you specified column
width. Choose among |
link |
A vector of strings for url links. |
new_tab |
T/F for whether to open up the new link in new tab |
tooltip |
A vector of strings to be displayed as tooltip. Obviously, this feature is only available in HTML. Read the package vignette to see how to use bootstrap tooltip css to improve the loading speed and look. |
popover |
Similar with tooltip but can hold more contents. The best way
to build a popover is through |
image |
Vector of image paths. |
Use latex_column_spec
in a LaTeX table to change or
customize the column specification. Because of the way it is handled
internally, any backslashes must be escaped.
## Not run:
x <- knitr::kable(head(mtcars), "html")
column_spec(x, 1:2, width = "20em", bold = TRUE, italic = TRUE)
x <- knitr::kable(head(mtcars), "latex", booktabs = TRUE)
column_spec(x, 1, latex_column_spec = ">{\\\\color{red}}c")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.