format_bib {mlr3misc} | R Documentation |
Format Bibentries in Roxygen
Description
Operates on a named list of bibentry()
entries and formats them nicely for
documentation with roxygen2.
-
format_bib()
is intended to be called in the@references
section and prints the complete entry usingtoRd()
. -
cite_bib()
returns the family name of the first author (if available, falling back to the complete author name if not applicable) and the year in format"[LastName] (YYYY)"
.
Usage
format_bib(..., bibentries = NULL, envir = parent.frame())
cite_bib(..., bibentries = NULL, envir = parent.frame())
Arguments
... |
( |
bibentries |
(named |
envir |
( |
Value
(character(1)
).
Examples
bibentries = list(checkmate = citation("checkmate"), R = citation())
format_bib("checkmate")
format_bib("R")
cite_bib("checkmate")
cite_bib("checkmate", "R")
[Package mlr3misc version 0.15.1 Index]