blob: 4f287d61815a5a411864f63fe57de5a653c89873 [file] [log] [blame]
Hao Zhu2a64dc62017-08-28 10:57:57 -04001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/kable_as_image.R
3\name{kable_as_image}
4\alias{kable_as_image}
5\title{Convert a LaTeX table to an image and place it in a rmarkdown document}
6\usage{
7kable_as_image(kable_input, filename = NULL, file_format = "png",
Hao Zhu68b5bbf2018-03-26 11:30:34 -04008 latex_header_includes = NULL, keep_pdf = FALSE, density = 300,
9 keep_tex = FALSE)
Hao Zhu2a64dc62017-08-28 10:57:57 -040010}
11\arguments{
12\item{kable_input}{Raw LaTeX code to generate a table. It doesn't have to
13came from \code{kable} or \code{kableExtra}.}
14
15\item{filename}{Character String. If specified, the image will be saved under
16the specified (path &) name. You don't need to put file format like ".png"
17here.}
18
19\item{file_format}{Character String to specify image format, such as \code{png},
20\code{jpeg}, \code{gif}, \code{tiff}, etc. Default is \code{png}.}
21
22\item{latex_header_includes}{A character vector of extra LaTeX header stuff.
23Each element is a row. You can have things like
24\code{c("\\usepackage{threeparttable}", "\\usepackage{icons}")}}
25
26\item{keep_pdf}{A T/F option to control if the mid-way standalone pdf should
27be kept. Default is \code{FALSE}.}
Hao Zhu4840bc92017-09-15 15:55:05 -040028
29\item{density}{Resolution to read the PDF file. Default value is 300, which
30should be sufficient in most cases.}
Hao Zhu68b5bbf2018-03-26 11:30:34 -040031
32\item{keep_tex}{A T/F option to control if the latex file that is initially created
33should be kept. Default is \code{FALSE}.}
Hao Zhu2a64dc62017-08-28 10:57:57 -040034}
35\description{
36This is a LaTeX-only function. This function will render the
37raw LaTeX code (could be codes generated by other table packages like
38\code{xtable}) to generate a table, convert it to an image and put it back to a
39rmarkdown environment. It is a "better than nothing" solution to print high
40quality tables in rmarkdown Word document. By using this, you need to take
Hao Zhu245931c2017-09-01 22:43:56 -040041the responsibility of explaining to your collaborators why they can't make
Hao Zhua9c43dc2017-09-04 23:00:39 -040042edits to the tables in Word.
Hao Zhu2a64dc62017-08-28 10:57:57 -040043
44Also, if a filename is provided, user has the option to "save" the table to
45an image file like \code{ggplot2::ggsave()}.
46
Hao Zhu246b95c2017-09-14 14:29:48 -040047Note that, if you are using this function on a Windows computer, you need
48to install Ghostscript before you can use this feature. It is essential for
49magick to read PDFs on Windows. Website for Ghostscript: https://ghostscript.com/
50
Hao Zhu2a64dc62017-08-28 10:57:57 -040051The idea of this function was coming from \href{https://stackoverflow.com/questions/44711313/save-rmarkdowns-report-tables-and-figures-to-file}{this StackOverflow question}.
52The approach was learned and adopted from the \href{https://github.com/metrumresearchgroup/texPreview}{texpreview}
53package, which allows you to preview the results of TeX code in the Viewer panel.
54}