我正在用RStudio尝试Knitr。 plot()的输出现在显示在已编译的PDF中。
以下是一个例子。代码显示在PDF中,但不显示在图中。
\documentclass[11pt]{article}
\begin{document}
\SweaveOpts{concordance=TRUE}
<<my-label, eval=TRUE>>=
plot(1:20)
@
\end{document}
我不确定我在这里缺少什么?
答案 0 :(得分:2)
您的示例对我不起作用,但如果我发表评论\SweaveOpts{concordance=TRUE}
并点击“编译PDF”,它就会起作用(我可以看到该情节)。< / p>
(请注意,我也在使用Knitr和RStudio中的pdfLaTeX。)