设置 Knitr 选项

设置 Knitr 选项

以下代码块不起作用,我收到一条错误消息,它破坏了我的文档的编译。不知道是否有人有任何想法?下面非常 M WE。正如 @Speravir 指出的那样,不确定它是否能提供很多启发。这实际上是为了将高效的代码整合在一起。

错误信息是Error object options_chunk not found

\documentclass[10pt]{article}
\begin{document}
Testing knitr


<<set-options>>=
options_chunk$set(cache=TRUE,cache.path='Data/Cache/',warning=FALSE,error=FALSE,message=FALSE)
@
 Something in the middle to prove its working   
<<somechunk,results='asis'>>=
 a=1
 b=2
 print(a+b)
@
\end{document}

答案1

而是。请opts_chunk参阅options_chunkhttp://yihui.name/knitr/options

相关内容