我有一个小问题,我不确定原因,但以下 knitr 代码:

<<toto, echo=FALSE, comment=NA, results='asis'>>=
  #Data
     a<- c(1:100)
     b<- c(100:200)
  #Plot1
    plot(a)
  #Plot2
    plot(b)
@

生成此 LaTeX 代码:
\includegraphics[width=\maxwidth]{figure/toto1}
  (empty line here)
\includegraphics[width=\maxwidth]{figure/toto2}
  (empty line here)

如何删除此空行?

最佳答案

使用块选项 fig.show='hold'

关于r - 在\include 图形之后编织空行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20198466/

10-12 17:23