blob: 3c6f7669bfb64d3568c42eeb902e1ceef05b6212 [file] [log] [blame]
Hao Zhue10cfd32017-02-21 16:41:14 -05001% Generated by roxygen2: do not edit by hand
Hao Zhuc1f38412017-02-23 12:13:48 -05002% Please edit documentation in R/kable_styling.R
3\name{kable_styling}
4\alias{kable_styling}
Hao Zhue10cfd32017-02-21 16:41:14 -05005\title{HTML table attributes}
6\usage{
Hao Zhua3fc0c42017-02-27 12:04:59 -05007kable_styling(kable_input, bootstrap_options = "basic",
Hao Zhu1fc48a62017-03-01 14:07:54 -05008 latex_options = "basic", full_width = NULL, position = "center",
Hao Zhua31e97f2017-06-08 14:55:41 -04009 font_size = NULL, ...)
Hao Zhue10cfd32017-02-21 16:41:14 -050010}
11\arguments{
Hao Zhu76281fe2017-07-03 19:33:09 -040012\item{kable_input}{Output of \code{knitr::kable()} with \code{format} specified}
Hao Zhuf7994dd2017-02-27 16:58:42 -050013
14\item{bootstrap_options}{A character vector for bootstrap table options.
Hao Zhu1fc48a62017-03-01 14:07:54 -050015Please see package vignette or visit the w3schools'
Hao Zhuf7994dd2017-02-27 16:58:42 -050016\href{https://www.w3schools.com/bootstrap/bootstrap_tables.asp}{Bootstrap Page}
Hao Zhu76281fe2017-07-03 19:33:09 -040017for more information. Possible options include \code{basic}, \code{striped},
18\code{bordered}, \code{hover}, \code{condensed} and \code{responsive}.}
Hao Zhuf7994dd2017-02-27 16:58:42 -050019
20\item{latex_options}{A character vector for LaTeX table options. Please see
Hao Zhu1fc48a62017-03-01 14:07:54 -050021package vignette for more information. Possible options include
Hao Zhu76281fe2017-07-03 19:33:09 -040022\code{basic}, \code{striped}, \code{hold_position}, \code{scale_down} & \code{repeat_header}.
23\code{striped} will add alternative row colors to the table. It will imports
24\code{LaTeX} package \code{xcolor} if enabled. \code{hold_position} will "hold" the floating
25table to the exact position. It is useful when the \code{LaTeX} table is contained
26in a \code{table} environment after you specified captions in \code{kable()}. It will
27force the table to stay in the position where it was created in the document.
28\code{scale_down} is useful for super wide table. It will automatically adjust
29the table to page width. \code{repeat_header} in only meaningful in a longtable
Hao Zhu971d89f2017-06-07 19:22:47 -040030environment. It will let the header row repeat on every page in that long
31table.}
Hao Zhue10cfd32017-02-21 16:41:14 -050032
Hao Zhu76281fe2017-07-03 19:33:09 -040033\item{full_width}{A \code{TRUE} or \code{FALSE} variable controlling whether the HTML
Hao Zhuf7994dd2017-02-27 16:58:42 -050034table should have 100\% width. Since HTML and pdf have different flavors on
Hao Zhu76281fe2017-07-03 19:33:09 -040035the preferable format for \code{full_width}. If not specified, a HTML table will
36have full width by default but this option will be set to \code{FALSE} for a
Hao Zhuf7994dd2017-02-27 16:58:42 -050037LaTeX table}
Hao Zhu94956582017-02-21 18:18:29 -050038
Hao Zhuf7994dd2017-02-27 16:58:42 -050039\item{position}{A character string determining how to position the table
Hao Zhu76281fe2017-07-03 19:33:09 -040040on a page. Possible values include \code{left}, \code{center}, \code{right}, \code{float_left}
41and \code{float_right}. Please see the package doc site for demonstrations. For
42a \code{LaTeX} table, if \code{float_*} is selected, \code{LaTeX} package \code{wrapfig} will be
Hao Zhuf7994dd2017-02-27 16:58:42 -050043imported.}
Hao Zhu94956582017-02-21 18:18:29 -050044
45\item{font_size}{A numeric input for table font size}
Hao Zhua31e97f2017-06-08 14:55:41 -040046
Hao Zhuca211db2017-07-25 00:06:43 -040047\item{...}{extra options for HTML or LaTeX. For LaTeX, extra options includes
48\code{repeat_header_method} and \code{repeat_header_text}. \code{repeat_header_method} can
49either be \code{append}(default) or \code{replace} while \code{repeat_header_text} is just a
50text string you want to append on or replace the caption.}
Hao Zhue10cfd32017-02-21 16:41:14 -050051}
52\description{
Hao Zhu26234122017-02-22 15:34:33 -050053This function provides a cleaner approach to modify the style
Hao Zhu76281fe2017-07-03 19:33:09 -040054of HTML tables other than using the \code{table.attr} option in \code{knitr::kable()}.
Hao Zhu26234122017-02-22 15:34:33 -050055Currenly, it assumes the HTML document has boot
Hao Zhue10cfd32017-02-21 16:41:14 -050056}
Hao Zhu78e61222017-05-24 20:53:35 -040057\examples{
58x_html <- knitr::kable(head(mtcars), "html")
59kable_styling(x_html, "striped", position = "left", font_size = 7)
60
61x_latex <- knitr::kable(head(mtcars), "latex")
62kable_styling(x_latex, latex_options = "striped", position = "float_left")
63
64}