| Line 2... |
Line 2... |
| 2 |
\alias{texi2dvi}
|
2 |
\alias{texi2dvi}
|
| 3 |
\title{Compile LaTeX Files}
|
3 |
\title{Compile LaTeX Files}
|
| 4 |
\description{Run latex and bibtex until all cross-references are
|
4 |
\description{Run latex and bibtex until all cross-references are
|
| 5 |
resolved and create either a dvi or PDF file.}
|
5 |
resolved and create either a dvi or PDF file.}
|
| 6 |
\usage{
|
6 |
\usage{
|
| 7 |
texi2dvi(file, pdf = FALSE, clean = TRUE, quiet = TRUE,
|
7 |
texi2dvi(file, pdf = FALSE, clean = FALSE, quiet = TRUE,
|
| 8 |
texi2dvi = getOption("texi2dvi"))
|
8 |
texi2dvi = getOption("texi2dvi"))
|
| 9 |
}
|
9 |
}
|
| 10 |
\arguments{
|
10 |
\arguments{
|
| 11 |
\item{file}{character. Name of TeX source file.}
|
11 |
\item{file}{character. Name of TeX source file.}
|
| 12 |
\item{pdf}{logical. If \code{TRUE}, a PDF file is produced insted of
|
12 |
\item{pdf}{logical. If \code{TRUE}, a PDF file is produced insted of
|
| 13 |
the default dvi file (texi2dvi command line option \option{--pdf}).}
|
13 |
the default dvi file (texi2dvi command line option \option{--pdf}).}
|
| 14 |
\item{clean}{logical. If \code{TRUE}, all auxiliary files are removed
|
14 |
\item{clean}{logical. If \code{TRUE}, all auxiliary files are removed
|
| 15 |
(texi2dvi command line option \option{--clean}).}
|
15 |
(texi2dvi command line option \option{--clean}). Does not work on
|
| - |
|
16 |
some platforms.}
|
| 16 |
\item{quiet}{logical. No output unless an error occurs.}
|
17 |
\item{quiet}{logical. No output unless an error occurs.}
|
| 17 |
\item{texi2dvi}{character (or \code{NULL}). Script or program used to
|
18 |
\item{texi2dvi}{character (or \code{NULL}). Script or program used to
|
| 18 |
compile a TeX file to dvi or PDF, respectively. If set to
|
19 |
compile a TeX file to dvi or PDF, respectively. If set to
|
| 19 |
\code{NULL}, the \file{texi2dvi} script in R's \file{bin} directory
|
20 |
\code{NULL}, the \file{texi2dvi} script in R's \file{bin} directory
|
| 20 |
is used (if it exists), otherwise it is assumed that
|
21 |
is used (if it exists), otherwise it is assumed that
|