我无法从LaTeX(* .Rtex)文档中获取外部代码块以在knitr中工作。
foo.R包含:
## @knitr foo
#
tx <- seq(0,2*pi,length.out=100)
ty <- cos(tx*3.0)
plot(tx,ty,pch=20,col='blue')
seq(3)
test1.Rtex文档包含:
%% read_chunk('Code/foo.R')
%
%%
%% begin.rcode foo, echo=TRUE, tidy=TRUE, eval=TRUE
%% end.rcode
knit('test1.Rtex')产生:
chunk "foo" is empty or set not to be evaluated
我有knitr git存储库的副本。使用cat(sprint())
语句修改此代码时,没有证据表明在LaTeX代码中使用了read_chunk()
。