citHeader("To cite in publications use:")

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

citEntry(entry = "Manual",
	 title = {
             paste("polynom: A Collection of Functions to Implement",
                   "a Class for Univariate Polynomial Manipulations")
         },
	 author = personList(
           person(first = "Bill", last = "Venables",
                  email = "Bill.Venables@adelaide.edu.au"),
           person(first = "Kurt", last = "Hornik",
                  email = "Kurt.Hornik@R-project.org"),
           person(first = "Martin", last = "Maechler",
                  email = "maechler@stat.math.ethz.ch")),
         year = year,
	 note = {
             paste(note,
                   "S original by Bill Venables, packages for R",
                   "by Kurt Hornik and Martin Maechler.")
         },
	 url = "http://CRAN.R-project.org/",
	 textVersion = {
             paste("Bill Venables and Kurt Hornik and Martin Maechler",
	           sprintf("(%s).", year),
                   "polynom: A Collection of Functions to Implement",
                   "a Class for Univariate Polynomial Manipulations.",
                   note)
         })
