I have the following description file as part of my R package
Package: blah
Title: What the Package Does (one line, title case)
Version: 0.0.0.9000
Authors@R: person("Jon", "Snow", email = "[email protected]", role = c("aut", "cre"))
Description: What the package does (one paragraph).
Depends: R (>= 3.5.1)
License: What license is it under?
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.1.0.9000
I have documented my code and would like to produce a manual that accompanies it. In a previous post, people have mentioned using the command
R CMD Rd2pdf <work directory>
and I managed to produce a manual.
The issue is that in my manual, the bit before R topics documented does not show the authors but everything else. I have installed packages such as devtools
, knitr
, roxygen2
and testthat
. Any advice would be highly appreciated.