RweaveLatex {tools}R Documentation

R/LaTeX Driver for Sweave

Description

A driver for Sweave that translates R code chunks in LaTeX files.

Usage

RweaveLatex()
RweaveLatexSetup(file, syntax, output=NULL, quiet=FALSE, debug=FALSE,
                 echo=TRUE, eval = TRUE, split=FALSE, stylepath=TRUE,
                 pdf=TRUE, eps=TRUE)

Arguments

file Name of Sweave source file.
syntax An object of class SweaveSyntax.
output Name of output file, default is to remove extension `.nw', `.Rnw' or `.Snw' and to add extension `.tex'. Any directory names in file are also removed such that the output is created in the current working directory.
quiet If TRUE all progress messages are suppressed.
debug If TRUE, input and output of all code chunks is copied to the console.
stylepath If TRUE, a hard path to the file `Sweave.sty' installed with this package is set, if FALSE, only \usepackage{Sweave} is written. The hard path makes the TeX file less portable, but avoids the problem of installing the current version of `Sweave.sty' to some place in your TeX input path. The argument is ignored if a \usepackage{Sweave} is already present in the Sweave source file.
echo set default for option echo, see defails below.
eval set default for option eval, see defails below.
split set default for option split, see defails below.
pdf set default for option pdf, see defails below.
eps set default for option eps, see defails below.

Supported Options

Author(s)

Friedrich Leisch

References

Friedrich Leisch: Sweave User Manual, 2002
http://www.ci.tuwien.ac.at/~leisch/Sweave

See Also

Sweave, Rtangle


[Package Contents]