如何在以下 .Rnw 文件的 PDF 文件中的第二条评论之前获得一个空行?我尝试使用keep.source
and strip.white
,但我仍然没有得到空白行——所有块都“粘贴”在一起。
\documentclass{article}
\usepackage{fancyvrb}
\usepackage{Sweave}
\begin{document}
<<setup, eval=FALSE>>=
## some comment
a <- 1
b <- 2
## some comment (there is no newline before this comment...)
c <- 3
d <- 4
@
\end{document}