Learn R Programming

rebib (version 0.5.0)

biblio_converter: bibliography converter

Description

a quick converter for bbl/tex to bib

Usage

biblio_converter(file_path = "", log_rebib = FALSE)

Value

bib file

Arguments

file_path

provide a file_path with file name to point tex/bbl file

log_rebib

option to enable log files for rebib

Examples

Run this code
test_file <- system.file("standalone/test.bbl", package = "rebib")
dir.create(your_article_folder <- file.path(tempdir(), "testdir"))
file.copy(test_file, your_article_folder)
your_article_path <- xfun::normalize_path(paste(your_article_folder,"test.bbl",sep="/"))
rebib::biblio_converter(file_path = your_article_path)
head(readLines(xfun::with_ext(your_article_path,"bib")))
unlink(your_article_folder,recursive = TRUE)

Run the code above in your browser using DataLab