mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
c9d9bde0b2
http://www.lyx.org/trac/ticket/7555 This part is a simple cleanup: * rename variables to start with a dot * reset encoding after running sweave * improve on-screen display of code chunks git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39506 a592a061-630c-0410-9148-cb99ea01b6c8
57 lines
2.2 KiB
R
57 lines
2.2 KiB
R
# file lyxsweave.R
|
|
# This file is part of LyX, the document processor.
|
|
# Licence details can be found in the file COPYING.
|
|
|
|
# author Jean-Marc Lasgouttes
|
|
# author Yihui Xie
|
|
|
|
# Full author contact details are available in file CREDITS
|
|
|
|
# Wrapper around Sweave that sets up some things for LyX
|
|
# argument 1 is the absolute name of the input file
|
|
# argument 2 is the absolute name of the output file
|
|
# argument 3 is the iconv name for the encoding of the file
|
|
# argument 4 is the original document directory
|
|
|
|
.cmdargs <- commandArgs(trailingOnly=TRUE)
|
|
|
|
# check whether Sweave.sty is seen by LaTeX. if it is not, we will
|
|
# copy it alongside the .tex file (in general in the temporary
|
|
# directory). This means that an exported LaTeX file will not work,
|
|
# but this is a problem of installation of R on the user's machine.
|
|
# The advantage compared to the use of stylepath, is that the exported
|
|
# .tex file will be portable to another machine. (JMarc)
|
|
if (!length(system("kpsewhich Sweave.sty", intern=TRUE, ignore.stderr=TRUE))) {
|
|
file.copy(file.path(R.home("share"), "texmf", "tex", "latex", "Sweave.sty"),
|
|
dirname(.cmdargs[2]), overwrite=TRUE)
|
|
}
|
|
|
|
# set default encoding for input and output files; .orig.enc is used in
|
|
# the sweave module preamble to reset the encoding to what it was.
|
|
.orig.enc <- getOption("encoding")
|
|
options(encoding=.cmdargs[3])
|
|
|
|
# Change current directory to the document directory, so that R can find
|
|
# data files.
|
|
setwd(.cmdargs[4])
|
|
|
|
# this is passed as a prefix.string to tell where temporary files should go
|
|
# the output file without extension and without '.'
|
|
tmpout <- gsub(".", "-", sub("\\.tex$", "", basename(.cmdargs[2])), fixed = TRUE)
|
|
# replace
|
|
.prefix.str <- paste(dirname(.cmdargs[2]), tmpout, sep="/")
|
|
rm(tmpout)
|
|
|
|
# finally run sweave
|
|
Sweave(file=.cmdargs[1], output=.cmdargs[2], syntax="SweaveSyntaxNoweb", prefix.string=.prefix.str)
|
|
|
|
# remove absolute path from \includegraphics
|
|
options(encoding=.cmdargs[3]) # encoding has been changed in the preamble chunk
|
|
ls.doc = readLines(.cmdargs[2])
|
|
ls.cmd = paste('\\includegraphics{', dirname(.cmdargs[2]), "/", sep = "")
|
|
ls.idx = grep(ls.cmd, ls.doc, fixed = TRUE)
|
|
if (length(ls.idx)) {
|
|
ls.doc[ls.idx] = sub(ls.cmd, "\\includegraphics{", ls.doc[ls.idx], fixed = TRUE)
|
|
writeLines(ls.doc, .cmdargs[2])
|
|
}
|