我第一次尝试让 knitr 在 texmaker 上运行,我遵循了这个文档并且我在 Windows 7 上。但是,当我编译时,我得到以下错误堆栈:
Process started
Error in readLines(if (is.character(input2)) { : cannot open the connection Calls: <Anonymous> -> knit -> readLines
In addition: Warning message: In readLines(if (is.character(input2)) { : cannot open file 'try_easy.Rnw': No such file or directory
Execution halted
Process exited with error(s)
我试图用谷歌搜索它,但只找到了对 linux/unix 的引用,这对我的情况没有帮助。以下是我的简短测试文档:
\documentclass[a4paper]{article}
\begin{document}
<<a>>=
x=rnorm(100)
<<b>>=
<<a>>
mean(x)
@
\end{document}
这是我第一次使用stackoverflow,所以如果您需要更多信息或者我做错了什么,请告诉我。非常感谢。
更新 大家好,
我设法找出我的错误。为了将来的谷歌搜索,我将文件保存.tex
为.rnw
. 保存为rnw
解决它。由于我无法回答自己的问题,因此我在此处对其进行了编辑。