
Last chance! 50% off unlimited learning
Sale ends in
This is a simple script to run knit, then LaTeX, then patchDVI.
knitMiktex(Rnw, main,
weave = knitr::knit,
...)knitPDFMiktex(Rnw, main,
weave = knitr::knit,
...)
knitDVI(Rnw, main,
weave = knitr::knit,
...)
knitPDF(Rnw, main,
weave = knitr::knit,
...)
knitDVIPDFM(Rnw, main,
weave = knitr::knit,
...)
These functions are run for the side effects.
The .Rnw input file
The .tex file on which to run latex, defaulting to the output file from Sweave
The function to carry out the weaving.
See Details below.
The ...
arguments are passed to the corresponding Sweave*
function.
If the Rnw
argument is a filename ending in .tex
, then
knitting is skipped, but the output file is still patched (because
one of the other files in the project might have come from knitr).
if (FALSE) {
knitPDF("chapter.Rnw", "book.tex")
}
Run the code above in your browser using DataLab