read_bib {biblio}R Documentation

Read BibTeX Databases

Description

Reading BibTeX databases and importing into R as a data frame. All the fields will be inserted as character values.

Usage

read_bib(x, ...)

Arguments

x

A single character value with the path to a BibTeX file. Alternativelly it can be a character vector containing the lines of a BibTeX library, for instance after using readLines().

...

Further arguments passed to readLines().

Value

An object of class lib_df.

Examples

Refs <- read_bib(x = file.path(
  path.package("biblio"),
  "LuebertPliscoff.bib"
))
Refs

[Package biblio version 0.0.10 Index]