#year <- sub("-.*", "", meta$Date)    # 'year' is not giving any result (?); year hard-coded in below
note <- sprintf("R package version %s", meta$Version)

citHeader("To cite package 'conf' in publications use:")

citEntry(entry = "Manual",
         title = "{conf}: Visualization and Analysis of Statistical Measures of Confidence",
         author = personList(as.person("Christopher Weld"), as.person("Hayeon Park"),
                             as.person("Lawrence Leemis")),
         year = 2020,
         note = note,
         url  = "https://CRAN.R-project.org/package=conf",

         textVersion =
         paste0("Christopher Weld, Hayeon Park, and Lawrence Leemis (2020), ",
               "conf: Visualization and Analysis of Statistical Measures of Confidence, ",
               "R package version ", meta$Version,
               ", http://CRAN.R-project.org/package=conf.")
)

#citEntry(entry = "Article",
#         title = "Plotting Likelihood-Ratio Based Confidence Regions for Two-Parameter
#         Univariate Probability Models,",
#         author = personList(as.person("Christopher Weld"), as.person("Lawrence Leemis")),
#         journal = "The American Statistician",
#         publisher = "Taylor and Francis",
#         year = "2019",
#         note = "doi:10.1080/00031305.2018.1564696",
#
#         textVersion =
#         paste("Christopher Weld and Lawrence Leemis (in press),",
#               "Plotting Likelihood-Ratio Based Confidence Regions for Two-Parameter
#                Univariate Probability Models,",
#               "The American Statistician. doi:10.1080/00031305.2018.1564696")
#)

#bibentry(bibtype = "Manual",
#         title = "{conf}: Visualization and Analysis of Statistical Measures of Confidence",
#         author = c(person("Christopher", "Weld"),
#                    person("Hayeon", "Park"),
#                    person("Lawrence", "Leemis")),
#         year = year,
#         note = note,
#         url = "https://CRAN.R-project.org/package=conf")

