search for: rnwfiles

Displaying 7 results from an estimated 7 matches for "rnwfiles".

Did you mean: rnwfile
2009 Dec 17
2
Sweave Makefile issue
...stood by the compiler. What's wrong then with this Makefile (I am using GNU Make 3.81)? I will be grateful for any help you can provide. _________________________________________________ MASTER = total_article.pdf # the master document depends on all of the tex files Rfile = prepareScript.R RNWFILES = $(wildcard *.Rnw) TEXFILES = $(wildcard *.tex) DEPENDS = $(patsubst %.Rnw,%.tex,$(RNWFILES)) $(TEXFILES) RERUN = "(There were undefined references|Rerun to get (citations|cross-references|the bars) (correct|right)|Table widths have changed. Rerun LaTeX.|Linenumber reference failed)"...
2006 Oct 13
2
cygwin script for Sweave
below is a very simple bash script to run Sweave from a cygwin terminal, run pdflatex on the generated .tex file, and then view the resulting .pdf output. i usually use cygwin when i am (forced to be on) Windoze, but i found a few issues with paths that this script works around. pdfview, used in the script, is simply:
2011 Apr 20
1
Sweave
Hello, I never used Sweave before but now I try and got: > > rnwfile <- system.file("Sweave", "example-1.Rnw", package = "utils") > Sweave(rnwfile) Writing to file example-1.tex Processing code chunks with options ... 1 : echo term verbatim 2 : term verbatim pdf You can now run (pdf)latex on 'example-1.tex' >
2003 Apr 30
2
Working comfortably with (X)Emacs + Sweave
Dear List, I am trying to become more familiar with Sweave at the moment, beacuse I am convinced that it will eventually make my life easier. However, I have not found anything relevant in the mail archives about the following problem. Both the article in R-News and the Sweave FAQ suggest that Emacs would be a great development environment for working with Sweave. So far, it doesn't seem to
2007 Jun 20
1
Help With Sweave:
Hi All, I am running Ubuntu Feisty (7.04) on a Thinkpad T41. I've installed the nowebm package for Ubuntu. Working from this HowTo: http://www.ci.tuwien.ac.at/~leisch/Sweave/example-1.Snw I try to compile the example *.Snw as in the Sweave manual: mdj at lapmdj:~/Desktop/Sweave/example1$ noweb example-1.Snw Can't open output file Despite the error, a *.tex file is produced. Now I am
2008 May 21
4
Sweave / Latex per-chapter output
Dear R-help, I am using Sweave and pdflatex to generate a large report from data contained in my database (Postgres via RODBC). Currently, I work with a single R/Sweave file, containing several "chapter" indications for the Latex engine. My master tex file sets the document class, and includes the introduction, the main Sweave file, and a conclusions and reference file. I use a makefile
2008 Jul 02
0
Sweave / Latex per-chapter output
...pre" first, and then the chapter I want. So, I just comment out the things I don't want to run. - In "my" Makefile (it's Mark's really, with some minor adaptations), I specify the following to make sure "pre" is run first before running the individual chapters: RNWFILES = pre.Rnw intro.Rnw $(wildcard c*.Rnw) So, with all this I can get "whole document" PDFs or "per-chapter" PDFs - Great! Actually, then I go on and feed the tex file(s) to "latex2html", a great tool, to generate HTML equivalents all ready with navigation, buttons and...