I'm new to bibTex objects, and want to generate a list of text strings for each citation in the object as a formatted citation. I don't want to generate a document--these strings will be used for a downstream purpose within R. Is there a way to do this? I can't even really figure out how to access the pieces of each citation in a bibTex object.
Put another way, how to I turn this:
temp <- toBibtex(c(citation("base"), citation("sp")))
into this:
[[1]]
[1] "R Core Team (2019). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. https://www.R-project.org/."
[[2]]
[1] "Pebesma, E.J., R.S. Bivand (2005). Classes and methods for spatial data in R. R News 5. https://cran.r-project.org/doc/Rnews/."
[[3]]
[1] "Bivand, R.S., Pebesma, E.J., Gomez-Rubio, V. (2013). Applied spatial data analysis with R, Second edition. Springer, NY. https://asdar-book.org/."
Help?
Using bib2df package:
Note: I am new to bibtex, too. There is also RefManageR package, might be more useful.
Using RefManageR:
Both will print as below: