Rev 47259 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/utils/man/RweaveLatex.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2008 R Core Development Team% Distributed under GPL 2 or later\name{RweaveLatex}\Rdversion{1.1}\alias{RweaveLatex}\alias{RweaveLatexSetup}\title{R/LaTeX Driver for Sweave}\description{A driver for \code{\link{Sweave}} that translates R code chunks inLaTeX files.}\usage{RweaveLatex()RweaveLatexSetup(file, syntax, output = NULL, quiet = FALSE,debug = FALSE, stylepath, \dots)}\arguments{\item{file}{Name of Sweave source file.}\item{syntax}{An object of class \code{SweaveSyntax}.}\item{output}{Name of output file, default is to remove extension\file{.nw}, \file{.Rnw} or \file{.Snw} and to add extension\file{.tex}. Anydirectory names in \code{file} are also removed such that the outputis created in the current working directory.}\item{quiet}{If \code{TRUE} all progress messages are suppressed.}\item{debug}{If \code{TRUE}, input and output of all codechunks is copied to the console.}\item{stylepath}{See \sQuote{Details}.}\item{\dots}{named values for the options listed in \sQuote{SupportedOptions}.}}\details{The LaTeX file generated needs to contain\code{\\usepackage\{Sweave\}}, and if this is not present in theSweave source file, it is inserted by the \code{RweaveLatex} driver.If \code{stylepath = TRUE}, a hard-coded path to the file\file{Sweave.sty} in the \R installation is set in place of \code{Sweave}.The hard-coded path makes the TeX file less portable, but avoids theproblem of installing the current version of \file{Sweave.sty} to someplace in your TeX input path. However, TeX may not be able toprocess the hard-coded path if it contains spaces (as it often willunder Windows) or TeX special characters.The default in \R prior to 2.7.0 was \code{stylepath = TRUE}. It isnow taken from the environment variable\env{SWEAVE_STYLEPATH_DEFAULT}, or is \code{FALSE} it that is unset orempty. If set, it should be exactly \code{TRUE} or \code{FALSE}: anyother values are taken as \code{FALSE}.}\section{Supported Options}{\code{RweaveLatex} supports the following options for code chunks (the valuesin parentheses show the default values):\describe{\item{echo:}{logical (\code{TRUE}). Include S code in theoutput file?}\item{keep.source:}{logical (\code{FALSE}). When echoing, if\code{keep.source == TRUE} the original source is copied to the file.Otherwise, deparsed source is echoed.}\item{eval:}{logical (\code{TRUE}). If \code{FALSE}, the code chunk is notevaluated, and hence no text or graphical output produced.}\item{results:}{character string (\code{verbatim}).If \code{verbatim}, the output of S commands isincluded in the verbatim-like Soutput environment. If\code{tex}, the output is taken to be already proper latex markupand included as is. If \code{hide} then all output iscompletely suppressed (but the code executed during the weave).}\item{print:}{logical (\code{FALSE})If \code{TRUE}, each expression in thecode chunk is wrapped into a \code{print()} statement before evaluation,such that the values of all expressions become visible.}\item{term:}{logical (\code{TRUE}). If \code{TRUE}, visibility of valuesemulates an interactive R session: values of assignments are notprinted, values of single objects are printed. If \code{FALSE},output comes only from explicit \code{\link{print}} or\code{\link{cat}} statements.}\item{split:}{logical (\code{FALSE}). If \code{TRUE}, text output iswritten to separate filesfor each code chunk.}\item{strip.white:}{character string (\code{false}). If \code{true}, blanklines at the beginning and end of output are removed. If\code{all}, then all blank lines are removed from the output.}\item{prefix:}{logical (\code{TRUE}). If \code{TRUE} generated filenames offigures and output have a common prefix.}\item{prefix.string:}{a character string, default is the name of the\file{.Snw} source file.}\item{include:}{logical (\code{TRUE}), indicating whether inputstatements for text output and includegraphics statementsfor figures should be auto-generated. Use \code{include = FALSE} ifthe output should appear in a different place than the code chunk(by placing the input line manually).}\item{fig:}{logical (\code{FALSE}), indicating whether the codechunk producesgraphical output. Note that only one figure per code chunk can beprocessed this way.}\item{eps:}{logical (\code{TRUE}), indicating whether EPS figures should begenerated. Ignored if \code{fig = FALSE}.}\item{pdf:}{logical (\code{TRUE}), indicating whether PDF figures should begenerated. Ignored if \code{fig = FALSE}.}\item{pdf.version, pdf.encoding:}{passed to \code{\link{pdf}} to setthe version and encoding. Defaults taken fron \code{pdf.options()}.}\item{width:}{numeric (6), width of figures in inches.}\item{height:}{numeric (6), height of figures in inches.}\item{expand:}{logical (\code{TRUE}). Expand references to other chunksso that only R code appears in the output file. If \code{FALSE}, thechunk reference (e.g. \code{<<chunkname>>}) will appear. The\code{expand=FALSE} option requires \code{keep.source = TRUE} or itwill have no effect.}\item{concordance:}{logical (\code{FALSE}). Write a concordance fileto link the input line numbers to the output line numbers. This isan experimental feature; see the source code for the output format,which is subject to change in future releases.}}}\author{Friedrich Leisch}\references{Friedrich Leisch: Sweave User Manual, 2008\cr\url{http://www.stat.uni-muenchen.de/~leisch/Sweave}}\seealso{\code{\link{Sweave}}, \code{\link{Rtangle}}}\keyword{utilities}