Rather than redoing all the work of generating LaTeX code to wrap the
tabular
result, this function works by generating a dummy
kable
table, and replaces the tabular
part
with the tabular
result.
Many of the arguments to kable
deal with the
content of the table, not the wrapper. These will be ignored with a
warning. Currently the arguments that will not be ignored, with their
defaults, are:
caption = NULL
The caption to use on the table.
label = NULL
Part of the LaTeX label to use on the table. The
full label will have "tab:"
prepended by kable
.
escape = TRUE
Whether to escape special characters in the caption.
booktabs = FALSE, longtable = FALSE
Logical values to indicate that style
of table. These must also be specified to tabular
; see
the main vignette for details.
position = ""
The instruction to LaTeX about how to position
the float in the document.
centering = TRUE
Whether to center the table in the float.
caption.short = ""
Abbreviated caption to use in TOC.
table.envir = if (!is.null(caption)) "table"
Name of
outer environment.
These arguments are all defined in the knitr package, and
may change in the future.