Description Usage Arguments Details Value Examples
View source: R/check_bibtex_file.R
This function goes through a file containing BibTeX citations and compares the citations to a vector of citations given.
1 | check_bibtex_file(file, citations)
|
file |
File containing BibTeX citations. |
citations |
A vector of packages, in the order they appear in your citation file. |
NOTE: The order of the citations vector must be the same as the order of the citations in the file. For example, if the citations vector contains 2 packages and is ordered as c(PackageA, PackageB), PackageA must be the first citation to appear in the citation file.
Any issues with the citation given when compared to the package's citation.
1 2 3 4 | check_bibtex_file("references.bib", c("tidyverse", "Lahman"))
check_bibtex_file("references.bib", "knitr")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.