citHeader("To cite in publications use:")

meta <- packageDescription("date")
year <- sub("-.*", "", meta$Date)
note <- sprintf("R package version %s.", meta$Version)

citEntry(entry = "Manual",
	 title = "date: Functions for handling dates",
	 author = personList(
           person(first = "Terry", last = "Therneau",
                  email = "therneau@mayo.edu"),
           person(first = "Thomas", last = "Lumley",
                  email = "thomas@biostat.washington.edu"),
           person(first = "Kjetil", last = "Halvorsen",
                  email = "khal@alumni.uv.es"),
           person(first = "Kurt", last = "Hornik",
                  email = "Kurt.Hornik@R-project.org")),
         year = year,
	 note = {
             paste(note,
                   "S original by Terry Therneau,",
		   "R port by Thomas Lumley, Kjetil Halvorsen,",
		   "and Kurt Hornik.")
         },
	 url = "http://CRAN.R-project.org/",
	 textVersion = {
             paste("Terry Therneau and Thomas Lumley",
	           "and Kjetil Halvorsen and Kurt Hornik",
	           sprintf("(%s).", year),
		   "date: Functions for handling dates.",
                   note)
         })
