r2lGenerateLatexMain {r2lUniv}R Documentation

Generation of LaTeX main document

Description

This function generates a LaTeX main document including some LaTeX summary built by r2lUniv.

Usage

r2lGenerateLatexMain(fileList, fileName = "main.tex")

Arguments

fileList list; list of the outfiles, files to be included in the main document.
fileName characters; name of the main document.

Details

r2lGenerateLatexMain generates a LaTeX main document including some LaTeX summary built by r2lUniv.

It creates a file "main.tex". You need to have a LaTeX compiler and epsfig package. If outfiles given as argument do exist (in the same directory), compiling main.tex will produce a dvi file that will present the LaTeX summary.

Value

A file ("main.tex" by default).

Author(s)

Christophe Genolini christophe.genolini@free.fr

See Also

r2lUniv, r2lUniv.data.frame, r2lUniv.r2lBasicClasses

Examples

 # # # # # # # # # # # # # # # # # # #
#   R to LaTeX, Univariate Analyses   #
 #             Examples              # 
  #      r2lGenerateLatexMain       #
   # # # # # # # # # # # # # # # # #

### Creates a file name "main.tex" that includes "file1.tex" and "file2.tex"
r2lGenerateLatexMain(c("file1.tex","file2.tex"))

### Creates a file name "main2.tex" that includes "file1.tex" and "file2.tex"
r2lGenerateLatexMain(c("file1.tex","file2.tex"),fileName="main2.tex")

[Package r2lUniv version 0.9 Index]