I can use the following code for child document if it is in the same directory.

<<child-demo, child=knitr-input-child.Rnw, eval=TRUE>>=
@

I wonder how to use child document if it is not in the same directory of master document. Thanks in advance for your help and time.

link|improve this question

3  
I assume you've tried the obvious (but quite possibly not-working) child=inputdir/input-child.Rnw? – Ben Bolker Jan 27 at 23:58
1  
the easier way to use the child feature is to just use `\Sexpr{knit_child('inputdir/input-child.Rnw')} – Ramnath Jan 28 at 3:33
1  
you can update from github: github.com/yihui/knitr it writes tex files in correct places, but I still need to think about the path of plot files – Yihui Jan 28 at 5:35
feedback

1 Answer

up vote 5 down vote accepted

This can be considered as a bug. Now I have fixed it on GitHub. Note, however, you need to setwd() to the directory of your master document before using knit(), otherwise knit() may not be able to find a child inputdir/child.Rnw. Please see if the development version works for you. Thanks!

link|improve this answer
Thanks @Yihui for your help. I'll check it. Thanks again. – MYaseen208 Jan 28 at 7:00
Now it works. Thanks @Yihui for your help and such a nice package. – MYaseen208 Jan 28 at 7:12
No problem, and just FYI, v0.2 is on CRAN now: cran.r-project.org/package=knitr – Yihui Jan 29 at 1:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.