Save kable to files
save_kable(x, file, bs_theme = "simplex", self_contained = TRUE,
extra_dependencies = NULL, ..., latex_header_includes = NULL,
keep_tex = FALSE)A piece of HTML code for tables, usually generated by kable and kableExtra
save to files. If the input table is in HTML and the output file
ends with .png, .pdf and .jpeg, webshot will be used to do the
conversion.
Which Bootstrap theme to use
Will the files be self-contained?
Additional HTML dependencies. For example,
list(
Additional variables being passed to webshot::webshot. This
is for HTML only.
A character vector of extra LaTeX header stuff.
Each element is a row. You can have things like
c("\\usepackage{threeparttable}", "\\usepackage{icons}") You could
probably add your language package here if you use non-English text in your
table, such as \\usepackage[magyar]{babel}.
A T/F option to control if the latex file that is initially created
should be kept. Default is FALSE.