bbt_write_bib | R Documentation |
Write a bibliography file to disk from a set of citation keys. To automatically generate a bibliography file from the items cited in your document when you Knit, place a line like this one in your RMarkdown YAML header:
bibliography: "`r rbbt::bbt_write_bib('bibliography.json', overwrite = TRUE)`"
bbt_write_bib(
path,
keys = bbt_detect_citations(),
ignore = character(),
translator = bbt_guess_translator(path),
library_id = getOption("rbbt.default.library_id", 1),
overwrite = FALSE,
filter = identity
)
path |
The output path for the bibliography file. Must end with |
keys |
A character vector of citation keys. |
ignore |
A character vector of keys to disregard (useful if
|
translator |
Type of bibliography file to create. Options are |
library_id |
You may have to pass a specific library ID
if your options are not set to use globally unique keys.
Set the rbbt.default.library_id to ensure this value is
used by the addin. You can use |
overwrite |
Use |
filter |
Pass a function that can be used to modify the output
of |
The value of path
(so that this function
can be used in the 'bibliography' RMarkdown YAML field)
Most users should use CSL-JSON format (.json
) for their bibliographies.
RMarkdown's citation formatting uses CSL styles. These styles require CSL-JSON data. RMarkdown converts other data formats (e.g., BibLaTeX) to CSL-JSON. This is not lossless, and references other than journal articles may be inaccurate. This is the case even if outputting to PDF or TeX format.
Only use BibLaTeX or BibTeX if you are using pandoc arguments to specify an alternative citation engine for raw TeX output.
The default translator can be changed. For example:
options(rbbt.default.translator = "json")
## Not run:
bbt_write_bib("bibliography.json") # For CSL-JSON output (recommended)
bbt_write_bib("bibliography.bib") # For BibLaTeX output
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.