An .R file with the following contents
#' @name PackageName
#' @docType package
NULL
should create the PackageName.Rd with \title and \description set from the DESCRIPTION file. Of course, both can be overridden manually. One can use #' @details to add further information.
Use case: Automatic creation of consistent and meaningful package documentation files which are useful, e.g., for data-only packages.
An
.Rfile with the following contentsshould create the
PackageName.Rdwith\titleand\descriptionset from theDESCRIPTIONfile. Of course, both can be overridden manually. One can use#' @detailsto add further information.Use case: Automatic creation of consistent and meaningful package documentation files which are useful, e.g., for data-only packages.