4

我试图在使用 RStudio 的 TeX 文档中包含一些 R 结果。我已经设法让 RStudio 生成,在我看来,一个很好的 tex 文件,但它无法编译 pdf。

我得到错误返回说!未定义的控制序列。' 这似乎是由于 str(data) 调用的第一行和显示显着性级别的行而返回的:

"! Undefined control sequence.
<argument> '
            data.frame':    1980 obs. of  5 variables:
l.39 'data.frame':  1980 obs. of  5 variables:

The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined."

"! Undefined control sequence. <argument> 
Signif. codes:  0 '
                              ***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
l.95 ...**' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined."

例如,只有摘要(数据)的文件可以正常工作

环顾其他邮件列表等,我发现这可能是因为 tex 找不到 Sweave 包,因此已将其复制到不同位置(与 Rnw 和 tex 文件相同的文件夹,以及路径中没有空格的目录)并尝试重新运行文件。似乎没有任何效果。

同样,这不起作用,但使用 summary(cars) 而不是 str(cars) 可以。这向我表明它与 ' 字符有关。

\documentclass [a4paper]{article}
\usepackage{Sweave} 
\title {Sweave Example 1}
\author {Friedrich Leisch}
\begin {document}
\maketitle
In this example we embed parts of the examples from the
\texttt {kruskal.test} help page into a \ LaTeX {} document :
<<>>=
data ( cars )
str(cars)
@
\end{document}

(改编自 sweave 手册)关于我做错了什么的任何想法?

任何建议将不胜感激。

4

1 回答 1

3

[noae]package 选项添加到您的\usepackage{Sweave}声明中。

于 2012-09-25T17:00:16.257 回答