Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 1 | % Generated by roxygen2: do not edit by hand |
| 2 | % Please edit documentation in R/column_spec.R |
| 3 | \name{column_spec} |
| 4 | \alias{column_spec} |
| 5 | \title{Specify the look of the selected column} |
| 6 | \usage{ |
Hao Zhu | 6d2faa1 | 2017-05-24 02:16:45 -0400 | [diff] [blame] | 7 | column_spec(kable_input, column, width = NULL, bold = F, italic = F) |
Hao Zhu | bff0191 | 2017-05-23 18:05:00 -0400 | [diff] [blame] | 8 | } |
| 9 | \arguments{ |
| 10 | \item{kable_input}{Output of `knitr::kable()` with `format` specified} |
| 11 | |
| 12 | \item{column}{A numeric value indicating which column to be selected} |
| 13 | |
| 14 | \item{width}{A character string telling HTML & LaTeX how wide the column |
| 15 | needs to be, e.g. "10cm", "3in" or "30em".} |
| 16 | |
| 17 | \item{bold}{A T/F value to control whether the text of the selected column |
| 18 | need to be bolded.} |
| 19 | |
| 20 | \item{italic}{A T/F value to control whether the text of the selected column |
| 21 | need to be emphasized.} |
| 22 | } |
| 23 | \description{ |
| 24 | This function allows users to select a column and then specify |
| 25 | its look. Right now it supports the following three properties: column width, |
| 26 | bold text and italic text. |
| 27 | } |