blob: ecfb48a80b61930069cc18cd732eb83622baa8aa [file] [log] [blame]
Hao Zhubff01912017-05-23 18:05:00 -04001% 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{
7column_spec(kable_input, column, width, bold = F, italic = F)
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
15needs 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
18need to be bolded.}
19
20\item{italic}{A T/F value to control whether the text of the selected column
21need to be emphasized.}
22}
23\description{
24This function allows users to select a column and then specify
25its look. Right now it supports the following three properties: column width,
26bold text and italic text.
27}