TeXpad 和 R 代码

TeXpad 和 R 代码

我正在尝试让 TeXpad(最新 OSX 版本)用一些 R 代码编译文档,但最终却出现错误。这是我的第一次尝试

我的文档

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel} 
\begin{document}
    You can type R commands in your \LaTeX{} document and they will be properly run and the output printed in the document.
 <<>>=
 # Create a sequence of numbers X = 2:10  
 # Display basic statistical measures summary(X)   
 @ 
\end{document}

当使用xelatex(或pdflatex) 编译并预处理 R 代码(使用 Knitr 或 Sweave)时,最终无法识别 R 代码。TeXpad 难道不能做到这一点吗?

答案1

我的问题有一个非常简单的解决方案:当我用扩展名 .Rnw 重命名文件时,它可以按应有的方式进行编译。

相关内容