What is the appropriate syntax to add an itemized list to roxygen2, for instance, in the @details section? Can I create a latex list environment?
It seems that line brakes are simply ignored, i.e.
#' @details text describing parameter inputs in more detail
#'
#' parameter 1: stuff
#'
#' parameter 2: stuff
thanks!
\describe{},\itemize{}as in the R extensions manual work ... ? – Ben Bolker Feb 13 '12 at 20:41