1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
citHeader("To cite the 'sn' package in publications, use:")
if(!exists("meta") || is.null(meta)) meta <- packageDescription("sn")
bibentry(bibtype ="manual",
title = paste("The {R} package \\texttt{sn}: ",
"The skew-normal and related distributions such as the ",
"skew-$t$ and the {SUN} (version ", meta$Version, ").", sep=""),
author = person(given="Adelchi", family="Azzalini"),,
address = "Universit\\`a degli Studi di Padova, Italia",
year = substr(meta$Date, 1, 4),
note = "Home page: \\url{http://azzalini.stat.unipd.it/SN/}",
url = "https://cran.r-project.org/package=sn",
textVersion = paste("Azzalini, A. (", substr(meta$Date, 1, 4), "). ",
"The R package 'sn': The Skew-Normal and Related Distributions ",
"such as the Skew-t and the SUN (version ", meta$Version, "). ",
"URL http://azzalini.stat.unipd.it/SN/,https://cran.r-project.org/package=sn",
sep="")
)
|