rtluMainFile {r2lUniv} | R Documentation |
This function generates a LaTeX main document design to include some files built by rtlu
.
rtluMainFile(fileList, fileName = "main.tex")
fileList |
list ; list of the outfiles, files to be included in the main document. |
fileName |
characters ; name of the main document. |
rtluMainFile
generates a LaTeX main document including some
files built by rtlu
.
It creates a file "main.tex". You need to have a LaTeX compiler and
epsfig
package.
A LaTeX file ("main.tex" by default).
Christophe Genolini
christophe.genolini@free.fr
PSIGIAM: Paris Sud Innovation Group in Adolescent Mental Health
INSERM U669 / Maison de Solenn / Paris
Jean-Marc Chamot
jchamot@u-paris10.fr
Laboratoire "Sport & Culture" / "Sports & Culture" Laboratory
University of Paris 10 / Nanterre
LaTeX web site http://www.latex-project.org/
Data are available on line: http://christophe.genolini.free.fr/EPO/EPO2007-Fraude.php
rtlu
,
r2lUniv-package
,
examCheating
,
Sweave
,
latex
# # # # # # # # # # # # # # # # # # # # R to LaTeX, Univariate Analyses # # Examples # # rtluMainFile # # # # # # # # # # # # # # # # # # ### Creates a file name "main.tex" that includes "file1.tex" and "file2.tex" rtluMainFile(c("file1.tex","file2.tex")) ### Creates a file name "main2.tex" that includes "file1.tex" and "file2.tex" rtluMainFile(c("file1.tex","file2.tex"),fileName="main2.tex")