read_bib2dt | R Documentation |
data.table
.The BibTeX file is read, parsed, tidied and written to a data.table
.
read_bib2dt(file)
file |
character, path or URL to a bib file. |
Read, parse and collate bibtex file to form a data.table. Different BIB may produce different data.table columns.
A data.table
.
ShuCai Zou
# Read from .bib file:
file1 <- system.file("extdata", "testfile_1.bib", package = "journalabbr", mustWork = TRUE)
dt1 <- read_bib2dt(file1)
colnames(dt1)
file2 <- system.file("extdata", "testfile_2.bib", package = "journalabbr", mustWork = TRUE)
dt2 <- read_bib2dt(file2)
colnames(dt2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.