2

我正在编织以下文件(注意eRRoR()功能):

\documentclass{beamer}

<<setup, include=FALSE>>=
opts_knit$set(stop_on_error=2L, message=FALSE)
options(width=40)
@

\begin{document}
\begin{frame}[fragile]{Test}
<<test1>>=
eRRoR()
message("aaa")
print("test1")
@

<<test2>>=
print("test2")
@

\end{frame}
\end{document}

我希望 knitr 停止出错。但尽管有stop_on_error=2L选项,R 输出如下:

> local({..od <- getwd(); setwd("c:/test/"); require(knitr); knit("c:/test/ktest.rnw"); setwd(..od) })


processing file: c:/test/ktest.rnw
  |>>>>>>>>>                                                        |  14%
  ordinary text without R code

  |>>>>>>>>>>>>>>>>>>>                                              |  29%
label: setup (with options) 
List of 1
 $ include: logi FALSE

  |>>>>>>>>>>>>>>>>>>>>>>>>>>>>                                     |  43%
  ordinary text without R code

  |>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>                            |  57%
label: test1
  |>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>                   |  71%
  ordinary text without R code

  |>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>         |  86%
label: test2
  |>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>| 100%
  ordinary text without R code


output file: c:\test\ktest.tex

> 

显然停止不会发生。此外,如果我使用 PdfLaTeX 输出 .tex 文件,我会得到以下 PDF 幻灯片:

Test

   eRRoR()
   ## Error:
   could not find function "eRRoR"
   message("aaa")
   ## aaa
   print("test1")
   ## [1] "test1"

   print("test2")
   ## [1] "test2"

幻灯片证实了编织仍在继续,尽管有错误。

我也不清楚(对我来说)为什么 knitr 打印“没有 R 代码的普通文本”。这些块中有 R 代码。此外,通过输出,该选项message=FALSE似乎无效。

我究竟做错了什么?我正在使用 ESS 12.09-1 [rev. 5167 (2012-09-24)] 和 knitr_0.8 。

4

1 回答 1

1

听起来您使用的是旧版本的knitr; 见常见问题 1

于 2013-03-03T21:01:42.357 回答