我当前编织的Makefile
看起来像:
SUFFIXES: .tex .pdf .Rnw
MAIN = lecture
INCLUDES = chapter1.tex chapter2.tex ...
all: $(INCLUDES) $(MAIN).pdf
$(MAIN).pdf: $(INCLUDES) $(MAIN).tex
.Rnw.tex:
R CMD Sweave $*.Rnw
.tex.pdf:
pdflatex $*.tex
<snip>
假设我想更改Sweave驱动程序以使用highlight包(比方说)。这样做的最佳方式是什么?
答案 0 :(得分:6)
你可以做我们为Rcpp *包做的事情。这是RcppGSL:
RcppGSL.pdf: RcppGSL/RcppGSL.Rnw
cp -f RcppGSL/RcppGSL.Rnw .
$(RSCRIPT) --vanilla -e "require(highlight); \
driver <- HighlightWeaveLatex(boxes = TRUE); \
Sweave( 'RcppGSL.Rnw', driver = driver ); "
$(RSCRIPT) -e "tools::texi2dvi( 'RcppGSL.tex', pdf = TRUE, clean = FALSE )"
bibtex RcppGSL
$(RSCRIPT) -e "tools::texi2dvi( 'RcppGSL.tex', pdf = TRUE, clean = TRUE )"
cp RcppGSL/RcppGSL-fake.Rnw RcppGSL.Rnw
这会将实际来源和“假”变体保存在子目录inst/doc/RcppGSL/
中
只有当我们想要它时才用R来重新创建pdf ---否则它会看到一个相同基本名称的Rnw和pdf并且很高兴。
比你开始使用的基本Makefile
更复杂,但目前仍然如此
切换到我们知道的highlight的唯一方法。