if (FALSE) { # interactive()
# To build a standalone document for citations
cite_packages(out.dir = tempdir())
# Format references for a particular journal:
cite_packages(citation.style = "peerj", out.dir = tempdir())
# Choose different output format:
cite_packages(out.format = "docx", out.dir = tempdir())
# Cite only packages currently loaded:
cite_packages(pkgs = "Session", out.dir = tempdir())
# Cite only user-provided packages:
cite_packages(pkgs = c("renv", "remotes", "knitr"), out.dir = tempdir())
# To include citations in an R Markdown or Quarto file
# include this in YAML header:
# bibliography: grateful-refs.bib
# then call cite_packages within an R chunk:
cite_packages(output = "paragraph", out.dir = tempdir())
# To include package citations in the reference list of an Rmarkdown document
# without citing them in the text, include this in a chunk:
nocite_references(cite_packages(output = "citekeys", out.dir = tempdir()))
}
Run the code above in your browser using DataLab