4

RStudio を使用して、いくつかの R の結果を TeX ドキュメントに含めようとしています。私は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 ファイルと同じフォルダー、およびパスにスペースがないディレクトリ) にコピーし、再実行を試みました。ファイル。何も機能していないようです。

同様に、これは機能しませんが、str(cars) の代わりに summary(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}

(スウィーブマニュアルから適応)私が間違っていることについて何か考えはありますか?

どんな提案でも大歓迎です。

4

1 に答える 1

3

ステートメントに[noae]パッケージ オプションを追加します。\usepackage{Sweave}

于 2012-09-25T17:00:16.257 に答える