read_bib2dt {journalabbr} | R Documentation |
Parse a BibTeX file to a data.table
.
Description
The BibTeX file is read, parsed, tidied and written to a data.table
.
Usage
read_bib2dt(file)
Arguments
file |
character, path or URL to a bib file. |
Details
Read, parse and collate bibtex file to form a data.table. Different BIB may produce different data.table columns.
Value
A data.table
.
Author(s)
ShuCai Zou
Examples
# 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)
[Package journalabbr version 0.4.3 Index]