I am getting an error roxygenize()that I cannot understand. I have a package of my various functions in which .Rd files are generated via roxygen.
An error Error: titlerequires a valuethat indicates the absence of a tag @title. However, kmmisc-package.Rthere is a tag in the file @title, so I'm not sure what the problem is.
kmmisc-package.R contains:
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
NULL
I am using R 2.13.2 with roxygen2 2.1 just reinstalled from CRAN. Full sessionInfo()is in essence at https://gist.github.com/1268056
Edit
In the @andrie sentence, I now have
#' Miscellaneous Functions
#'
#' \tabular{ll}{
#' Package: \tab kmmisc\cr
#' Type: \tab Package\cr
#' Version: \tab 0.1-2\cr
#' Date: \tab 2011-09-14\cr
#' License: \tab GPL-2\cr
#' LazyLoad: \tab yes\cr
#' LazyData: \tab yes\cr
#' }
#'
#' @author Me \email{my@@email}
#'
#' Maintainer: Me \email{my@@email}
#' @name package-kmmisc
#' @docType package
#' @title KM Misc
#' @keywords package
#' @aliases kmmisc package-kmmisc
#'
#'
NULL
which still generates the same error.
source
share