Tagged Questions
8
votes
2answers
432 views
Compiling latex directly from R
I want to find a programmatic way of converting a .tex latex document to pdf.
What I usually do, and this works in most cases, is to use:
tools::texi2dvi(latexfile, pdf = TRUE, clean = TRUE)
...