biblio_converter: bibliography converter

View source: R/util.R

biblio_converterR Documentation

bibliography converter

Description

a quick converter for bbl/tex to bib

Usage

biblio_converter(file_path = "", log_rebib = FALSE)

Arguments

file_path

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

log_rebib

option to enable log files for rebib

Value

bib file

Examples

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)

rebib documentation built on Oct. 15, 2024, 9:09 a.m.