2

I am wondering how package manuals like this are generated:

http://cran.r-project.org/web/packages/knitr/knitr.pdf

I have tried to follow steps in this page:

http://ase-research.org/R/

which mentions a function manual(pkg), but does not seem to exist.

sebastian-c
  • 15,057
  • 3
  • 47
  • 93
qed
  • 22,298
  • 21
  • 125
  • 196
  • Related questions: [How do you write your package documentation?](http://stackoverflow.com/q/3086081/602276) and [How to develop a package in R?](http://stackoverflow.com/q/7297458/602276) – Andrie Feb 12 '15 at 14:16

1 Answers1

4

It's easy. Just run:

R CMD Rd2pdf <Package directory>
rinni
  • 2,246
  • 1
  • 18
  • 21