我在 R 中使用 Sweave 制作包小插图,并想知道是否有办法在 Sweave 标记中“不运行”某些代码,例如:
\documentclass{article}
\usepackage{Sweave}
\begin{document}
<<a>>=
source("http://bioconductor.org/biocLite.R")
biocLite("Rgraphviz",depend=TRUE)
@
<<<b>>=
x <- 1
cat(x, "\n")
@
\end{document}
Sweave 中是否有不运行标签中的代码的选项 <<a>>=
?(我可以简单地使用“逐字”而不是 Sweave 标记,但是对于 Rd 文件是否有类似“未运行”的内容?)我查看了 Sweave 用户手册中的选项,但没有找到我想要的.