When documenting the R functions in myfunction.Rdand entire packages in mypackage-package.Rd, which tags are required?
myfunction.Rd
mypackage-package.Rd
By "tags" I mean things that look like \somename{}. For instance: \item{} \title{} \examples{}
\somename{}
\item{}
\title{}
\examples{}
This is described in Section 2.1 - The Rd Format for Writing Extensions. Look for "required".
Required sections for functions:
\name{name} \alias{topic} \title{title} \description{...} \usage{fun (arg1, arg2, ...)} \arguments{...}
For packages:
\name{name} \alias{topic} \title{title} \docType{package}