Set up a custom style for references in help pages
Rdpack_bibstyles.Rd
Set up a custom style for references in help pages.
Details
This is the initial implementation of support for styles for lists of bibliography references.
Currently setting authors
to "LongNames"
will cause the
references to appear with full names, eg John Smith rather than in the
default Smith J style.
Package authors can request this feature by adding the following line
to their .onLoad
function (if their package has one):
Rdpack::Rdpack_bibstyles(package = pkg, authors = "LongNames")
of just copy the following definition in a package that does not have
.onLoad
:
.onLoad <- function(lib, pkg){
Rdpack::Rdpack_bibstyles(package = pkg, authors = "LongNames")
invisible(NULL)
}
After building and installing the package the references should be using long names.