Render to pdf
render_pdf(
x,
display_loc = NULL,
transform = NULL,
header_latex = NULL,
keep_tex = FALSE,
escape_latex = TRUE,
quarto = FALSE,
version_check = TRUE
)This function saves a pdf to a specified location
docorator object
optional path to save the output pdf to
optional latex transformation function to apply to a gt latex string
optional .tex file of header latex
Boolean indicating if to keep resulting .tex file from latex conversion. Defaults to FALSE.
Boolean indicating if headers and footers of a gt table should be escaped with gt::escape_latex
Boolean indicating whether to use Quarto as the rendering engine. Defaults to FALSE, which uses Rmarkdown to render.
Boolean indicating whether to print a note if gt or ggplot versions dont match between the original docorator object and the one being used for rendering
gt::gtcars |>
dplyr::slice_head(n = 10) |>
dplyr::select(mfr, model, year, msrp) |>
gt::gt(groupname_col = "mfr",
row_group_as_column = TRUE) |>
as_docorator(
header = fancyhead(fancyrow("Header 1"), fancyrow("Header 2")),
display_name = "mytbl") |>
render_pdf()