## ----unload, include = FALSE-------------------------------------------------- ## Needed to clear internal package citation list from previous vignette builds unloadNamespace("RefManageR") ## ----setup, include = FALSE, cache = FALSE------------------------------------ library(RefManageR) bib <- ReadBib(system.file("Bib", "biblatexExamples.bib", package = "RefManageR"), check = FALSE) bib2 <- ReadBib(system.file("Bib", "RJC.bib", package = "RefManageR"))[[seq_len(20)]] BibOptions(check.entries = FALSE, style = "markdown", cite.style = "authoryear", bib.style = "numeric") ## ----fig.width=7, fig.height=6------------------------------------------------ plot(cars) ## ----fig.width=7, fig.height=6------------------------------------------------ plot(cars) ## ----results = "asis", echo = FALSE------------------------------------------- PrintBibliography(bib, .opts = list(check.entries = FALSE, sorting = "ynt")) ## ----results = "asis", echo = FALSE------------------------------------------- PrintBibliography(bib2)