我是Sweave / Tex的新手,并且希望尽可能地将我的R代码保留在Sweave文件之外。理想情况下,我想在Sweave的.Rnw文件中引用我的R文件,然后让Sweave直接读取它。
一个例子可能是这样的:
\begin{document}
\title{Project}
\author{Author}
\date {\today}
<<>>=
**Reference to file: projectcode.R**
@
\begin{figure}[H]
<<fig=TRUE,echo=FALSE,png=TRUE,pdf=FALSE,eps=FALSE>>=
ggplot(df, aes(x, y)) + geom_line()
@
\end{figure}
\end{document}
由于