read_bib: Read BibTeX Databases

View source: R/read_bib.R

read_bibR 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

biblio documentation built on June 22, 2024, 9:37 a.m.

Related to read_bib in biblio...