是否可以让 Sweave 在多行上自动打印 R 输入?例如,
\documentclass{article}
\begin{document}
\SweaveOpts{concordance=TRUE}
\setkeys{Gin}{width=\textwidth}
<<fig=TRUE>>=
plot(LakeHuron, ylab="Level in feet", xlab="Year", main="Level of Lake Huron 1875–1972", lwd=2, las=1)
@
\end{document}
将打印 R 代码以运行到(和超出)右手边距。据我所知,
<<>>=
options(width=60)
@
仅控制 R 输出。