2

我无法从 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())没有read_chunk()在 LaTeX 代码中使用的证据。

4

0 回答 0