1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
citHeader("To cite the 'mnormt' package in publications use:")
if(!exists("meta") || is.null(meta)) meta <- packageDescription("mnormt")
bibentry(bibtype="manual",
title = paste("The {R} package \\texttt{mnormt}: ",
"The multivariate normal and $t$ distributions (version ",
meta$Version, ")", sep=""),
author = c(
person("Adelchi", "Azzalini", role=c("aut", "cre")),
person("Alan", "Genz", role="aut", comment="Fortran code")),
year = substr(meta$Date, 1, 4),
url = "http://azzalini.stat.unipd.it/SW/Pkg-mnormt/",
textVersion =
paste("Azzalini, A. and Genz, A. (", substr(meta$Date, 1, 4), "). ",
"The R package 'mnormt': ",
"The multivariate normal and 't' distributions ",
"(version ", meta$Version, "). ",
"URL http://azzalini.stat.unipd.it/SW/Pkg-mnormt/",
sep="")
)
|