Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 1 | % Generated by roxygen2: do not edit by hand |
| 2 | % Please edit documentation in R/cell_spec.R |
| 3 | \name{cell_spec} |
| 4 | \alias{cell_spec} |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 5 | \alias{text_spec} |
| 6 | \title{Specify Cell/Text format} |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 7 | \usage{ |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 8 | cell_spec(x, format, bold = FALSE, italic = FALSE, monospace = FALSE, |
Hao Zhu | 53454f0 | 2018-01-14 16:29:10 -0500 | [diff] [blame^] | 9 | underline = FALSE, strikeout = FALSE, color = NULL, background = NULL, |
| 10 | align = NULL, font_size = NULL, angle = NULL, tooltip = NULL, |
| 11 | popover = NULL, link = NULL, extra_css = NULL, escape = TRUE, |
| 12 | background_as_tile = TRUE, latex_background_in_cell = TRUE) |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 13 | |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 14 | text_spec(x, format, bold = FALSE, italic = FALSE, monospace = FALSE, |
Hao Zhu | 53454f0 | 2018-01-14 16:29:10 -0500 | [diff] [blame^] | 15 | underline = FALSE, strikeout = FALSE, color = NULL, background = NULL, |
| 16 | align = NULL, font_size = NULL, angle = NULL, tooltip = NULL, |
| 17 | popover = NULL, link = NULL, escape = TRUE, background_as_tile = TRUE, |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 18 | latex_background_in_cell = FALSE) |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 19 | } |
| 20 | \arguments{ |
| 21 | \item{x}{Things to be formated. It could be a vector of numbers or strings.} |
| 22 | |
| 23 | \item{format}{Either "html" or "latex". It can also be set through |
| 24 | \code{option(knitr.table.format)}, same as \code{knitr::kable()}.} |
| 25 | |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 26 | \item{bold}{T/F for font bold.} |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 27 | |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 28 | \item{italic}{T/F for font italic.} |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 29 | |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 30 | \item{monospace}{T/F for font monospaced (verbatim)} |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 31 | |
Hao Zhu | 53454f0 | 2018-01-14 16:29:10 -0500 | [diff] [blame^] | 32 | \item{underline}{A T/F value to control whether the text of the selected row |
| 33 | need to be underlined} |
| 34 | |
| 35 | \item{strikeout}{A T/F value to control whether the text of the selected row |
| 36 | need to be stricked out.} |
| 37 | |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 38 | \item{color}{A character string for text color. Here please pay |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 39 | attention to the differences in color codes between HTML and LaTeX.} |
| 40 | |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 41 | \item{background}{A character string for background color. Here please |
| 42 | pay attention to the differences in color codes between HTML and LaTeX. Also |
| 43 | note that in HTML, background defined in cell_spec won't cover the whole |
| 44 | cell.} |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 45 | |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 46 | \item{align}{A character string for cell alignment. For HTML, possible |
| 47 | values could be \code{l}, \code{c}, \code{r} plus \code{left}, \code{center}, \code{right}, \code{justify}, |
| 48 | \code{initial} and \code{inherit} while for LaTeX, you can only choose |
| 49 | from \code{l}, \code{c} & \code{r}.} |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 50 | |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 51 | \item{font_size}{A numeric input for font size. For HTML, you can also use |
Hao Zhu | 8b32b19 | 2017-10-24 14:51:48 -0400 | [diff] [blame] | 52 | options including \code{xx-small}, \code{x-small}, \code{small}, \code{medium}, \code{large}, |
| 53 | \code{x-large}, \code{xx-large}, \code{smaller}, \code{larger}, \code{initial} and \code{inherit}.} |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 54 | |
Hao Zhu | 9ce317e | 2017-10-12 18:19:55 -0400 | [diff] [blame] | 55 | \item{angle}{0-360, degree that the text will rotate. Can be a vector.} |
| 56 | |
Hao Zhu | 064990d | 2017-10-17 18:08:42 -0400 | [diff] [blame] | 57 | \item{tooltip}{A vector of strings to be displayed as tooltip. |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 58 | Obviously, this feature is only available in HTML. Read the package |
| 59 | vignette to see how to use bootstrap tooltip css to improve the loading |
| 60 | speed and look.} |
| 61 | |
| 62 | \item{popover}{Similar with tooltip but can hold more contents. The best way |
| 63 | to build a popover is through \code{spec_popover()}. If you only provide a text |
| 64 | string, it will be used as content. Note that You have to enable this |
| 65 | bootstrap module manually. Read the package vignette to see how.} |
| 66 | |
| 67 | \item{link}{A vector of strings for url links. Can be used together with |
| 68 | tooltip and popover.} |
| 69 | |
Hao Zhu | b1de967 | 2018-01-08 16:29:24 -0500 | [diff] [blame] | 70 | \item{extra_css}{Extra css text to be passed into the cell} |
| 71 | |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 72 | \item{escape}{T/F value showing whether special characters should be escaped.} |
Hao Zhu | 457acb4 | 2017-10-14 17:37:02 -0400 | [diff] [blame] | 73 | |
| 74 | \item{background_as_tile}{T/F value indicating if you want to have round |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 75 | cornered tile as background in HTML.} |
| 76 | |
| 77 | \item{latex_background_in_cell}{T/F value. It only takes effect in LaTeX |
| 78 | when \code{background} provided, Default value is \code{TRUE}. If it's \code{TRUE}, the |
| 79 | background only works in a table cell. If it's \code{FALSE}, it works outside of a |
| 80 | table environment.} |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 81 | } |
| 82 | \description{ |
| 83 | Specify Cell format before it gets into kable |
| 84 | } |