Usage

## Import bib files ----
path_to_bibs <- system.file("extdata", package = "rbibtools")
refs <- read_bib(path = path_to_bibs)
#> Warning: `as_data_frame()` was deprecated in tibble 2.0.0.
#>  Please use `as_tibble()` instead.
#>  The signature and semantics have changed, see `?as_tibble`.
#>  The deprecated feature was likely used in the bib2df package.
#>   Please report the issue to the authors.
knitr::kable(refs[1:4, 1:8])
noid filename bibtexkey category author title year volume
1 references.bib berteaux2010 article Berteaux, Dominique ; de Blois, Sylvie ; Angers, Jean-François ; Bonin, Joël ; Casajus, Nicolas ; Darveau, Marcel ; Fournier, François ; Humphries, Murray M. ; McGill, Brian ; Larivée, Jacques ; Logan, Travis ; Nantel, Patrick ; Périé, Catherine ; Poisson, Frédéric ; Rodrigue, David ; Rouleau, Sébastien ; Siron, Robert ; Thuiller, Wilfried ; Vescovi, Luc The CC-Bio Project: Studying the effects of climate change on Quebec biodiversity 2010 2
2 references.bib berteaux2014 book Berteaux, Dominique ; Casajus, Nicolas ; de Blois, Sylvie Changements climatiques et biodiversité du Québec: Vers un nouveau patrimoine naturel 2014 NA
3 references.bib berteaux2017 article Berteaux, Dominique ; Casajus, Nicolas ; Angerbjörn, Anders ; Fuglei, Eva Foreword to Supplement 1: Research on a polar species — The Arctic fox 2017 36
4 references.bib berteaux2018 article Berteaux, Dominique ; Ricard, Marylène ; St-Laurent, Martin-Hugues ; Casajus, Nicolas ; Périé, Catherine ; Beauregard, Frieda de Blois, Sylvie Northern protected areas will become important refuges for biodiversity tracking suitable climates 2018 8
## Export data.frame ----
rbibtools::write_bib(refs, file = "references.bib")