Hello List,
I would like to insert code from .r files into a LaTeX appendix (possibly using Sweave).
I was considering:

<<results=tex,eval=true,echo=true>>=
source("file.r")
@
but I would just like to echo the code and not evaluate the code within the file.
maybe:
<<results=tex,eval=true,echo=false>>=
cat("\\begin{verbatim}")
readLines("file.r")
cat("\\end{verbatim}")
@

The above works well other than the line numbers which are included (which isn't so bad).

Thanks for the help and ideas!
Brian

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to