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.
child=inputdir/input-child.Rnw? – Ben Bolker Jan 27 at 23:58childfeature is to just use `\Sexpr{knit_child('inputdir/input-child.Rnw')} – Ramnath Jan 28 at 3:33