1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
citHeader("To cite in publications use:")
## R >= 2.8.0 passes package metadata to citation().
if(!exists("meta") || is.null(meta)) 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 = c(
person("Bill", "Venables",
email = "Bill.Venables@gmail.com"),
person("Kurt", "Hornik",
email = "Kurt.Hornik@R-project.org"),
person("Martin", "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 = "https://CRAN.R-project.org/package=polynom",
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)
})
|