Learn R Programming

journalabbr (version 0.3.1)

read_bib2tib: Parse a BibTeX file to a tibble

Description

The BibTeX file is read, parsed, tidied and written to a tibble.

Usage

read_bib2tib(file)

Arguments

file

character, path or URL to a bib file.

Value

A tibble.

Details

Read, parse and collate bibtex file to form a Tibble. Different BIB may produce different tibble columns.

See Also

abbrTable.

Examples

Run this code
# NOT RUN {
# Read from .bib file:
require(journalabbr)
path = system.file("extdata", "testfile_1.bib", package = "journalabbr", mustWork = TRUE)
bib <- read_bib2tib(path)
str(bib)
# }

Run the code above in your browser using DataLab