0

我无法使用 /input{file} 或 include{file} 命令将 .Rtex 文件输入到我的 shareLatex 项目中。

有没有办法像其他 .tex 文件一样包含它?

该文件如下所示:

<<>>=
# Create a sequence of numbers
X = 2:10

# Display basic statistical measures
summary(X)

@

如果我将代码放在 main.Rtex 文件中,则代码会被编译,但如果我尝试包含它,则不会。这个问题类似于tex.stackexchange 上的问题。

4

1 回答 1

1

以下在 Overleaf 中工作(名为 *.Rtex 的主文件)。

\documentclass{standalone}
\begin{filecontents*}{tmp999.Rtex}
<<>>=
rnorm(3)
@
\end{filecontents*}
\begin{document}
\input{tmp999}
\end{document}

背页输出

于 2018-11-07T21:31:13.160 回答