Displaying 2 results from an estimated 2 matches for "mytex".
Did you mean:
mutex
2009 Sep 28
1
Sweave, TEXINPUTS problem
Hi,
I'm trying to use Sweave in my .tex-documents using
\usepackage{Sweave}
notation. I have this line in my .bash_profile
export TEXINPUT=.:/Users/jrara/Library/Frameworks/R.framework/Resources/share/texmf:$TEXINPUTS
When trying to typeset this .tex document, I get an error message saying
ERROR: LaTeX Error: File `Sweave.sty' not found.
I tried to google this problem but could not
2003 Jul 25
0
Sweave and Printing Lattice Figures From Loop
...%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% .SNW file
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%I've set it up so you can just cut and paste in to a latex file
%---replace path to your sweave.sty....
\documentclass{article}
\usepackage{times}
\usepackage{c://mytex//styles//Sweave}
\begin{document}
<<echo=FALSE>>=
library(lattice)
Cond1 <- c("One","Two")
Fig1.1 <- xyplot(rnorm(1:100) ~ rnorm(1:100) | Cond1 )
Cond2 <- c("One","Two","Three","Four")
Fig1.2 <- xyplot(r...