blob: f803a7bb02ddd52c5988745344b8fbe6cf8d9ac2 [file] [log] [blame]
Hao Zhu79f1e2a2017-06-11 20:55:30 -04001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/row_spec.R
3\name{row_spec}
4\alias{row_spec}
5\title{Specify the look of the selected row}
6\usage{
Hao Zhu3e53e602017-07-26 12:40:57 -04007row_spec(kable_input, row, bold = FALSE, italic = FALSE,
Hao Zhu53454f02018-01-14 16:29:10 -05008 monospace = FALSE, underline = FALSE, strikeout = FALSE, color = NULL,
9 background = NULL, align = NULL, font_size = NULL, angle = NULL,
10 extra_css = NULL, hline_after = FALSE, extra_latex_after = NULL)
Hao Zhu79f1e2a2017-06-11 20:55:30 -040011}
12\arguments{
Hao Zhu76281fe2017-07-03 19:33:09 -040013\item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
Hao Zhu79f1e2a2017-06-11 20:55:30 -040014
Hao Zhu322de082017-09-11 19:25:29 -040015\item{row}{A numeric value or vector indicating which row(s) to be selected. You don't
Hao Zhu2a87e8e2017-06-14 15:49:33 -040016need to count in header rows or group labeling rows.}
Hao Zhu79f1e2a2017-06-11 20:55:30 -040017
18\item{bold}{A T/F value to control whether the text of the selected row
19need to be bolded.}
20
21\item{italic}{A T/F value to control whether the text of the selected row
22need to be emphasized.}
Hao Zhu3e53e602017-07-26 12:40:57 -040023
Hao Zhu53454f02018-01-14 16:29:10 -050024\item{monospace}{A T/F value to control whether the text of the selected row
Hao Zhu3e53e602017-07-26 12:40:57 -040025need to be monospaced (verbatim)}
Hao Zhu53e240f2017-09-04 20:04:29 -040026
Hao Zhu53454f02018-01-14 16:29:10 -050027\item{underline}{A T/F value to control whether the text of the selected row
28need to be underlined}
29
30\item{strikeout}{A T/F value to control whether the text of the selected row
31need to be stricked out.}
32
Hao Zhu457acb42017-10-14 17:37:02 -040033\item{color}{A character string for row text color. For example, "red" or
34"#BBBBBB".}
Hao Zhu53e240f2017-09-04 20:04:29 -040035
Hao Zhue7c8f702017-10-10 13:22:59 -040036\item{background}{A character string for row background color. Here please
Hao Zhu53e240f2017-09-04 20:04:29 -040037pay attention to the differences in color codes between HTML and LaTeX.}
Hao Zhue7c8f702017-10-10 13:22:59 -040038
39\item{align}{A character string for cell alignment. For HTML, possible values could
40be \code{l}, \code{c}, \code{r} plus \code{left}, \code{center}, \code{right}, \code{justify}, \code{initial} and \code{inherit}
41while for LaTeX, you can only choose from \code{l}, \code{c} & \code{r}.}
42
Hao Zhu8b32b192017-10-24 14:51:48 -040043\item{font_size}{A numeric input for font size. For HTML, you can also use
44options including \code{xx-small}, \code{x-small}, \code{small}, \code{medium}, \code{large},
45\code{x-large}, \code{xx-large}, \code{smaller}, \code{larger}, \code{initial} and \code{inherit}.}
Hao Zhubacd2f32017-10-11 14:06:36 -040046
47\item{angle}{0-360, degree that the text will rotate.}
Hao Zhub1de9672018-01-08 16:29:24 -050048
49\item{extra_css}{Extra css text to be passed into the cells of the row. Note
50that it's not for the whole row.}
Hao Zhu53454f02018-01-14 16:29:10 -050051
52\item{hline_after}{T/F. A replicate of \code{hline.after} in xtable. It
53addes a hline after ther row}
54
55\item{extra_latex_after}{Extra LaTeX text to be added after the row. Similar
56with \code{add.to.row} in xtable}
Hao Zhu79f1e2a2017-06-11 20:55:30 -040057}
58\description{
59This function allows users to select a row and then specify
Hao Zhue7c8f702017-10-10 13:22:59 -040060its look. It can also specify the format of the header row when \code{row} = 0.
Hao Zhu79f1e2a2017-06-11 20:55:30 -040061}
62\examples{
63x <- knitr::kable(head(mtcars), "html")
Hao Zhu4840bc92017-09-15 15:55:05 -040064row_spec(x, 1:2, bold = TRUE, italic = TRUE)
Hao Zhu79f1e2a2017-06-11 20:55:30 -040065
66}