| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| README.html | 2020-08-07 01:00 | 5.4K | ||
Implementing journal abbreviation for the ‘Journal’ field in BibTex file
The format of the bib file is as follows:
@***{****,
**** = {****},
**** = "*****",
*** = {{******}},
**** = {*****}}
% or
@***{****,
**** = {****},
**** = "*****",
*** = {{******}},
**** = {*****}
}Except for the @character line, the rest of the field lines must have an equal sign =
library(journalabbr)
path = system.file("extdata", "testfile_1.bib", package = "journalabbr", mustWork = TRUE)
temptab = abbr2bib(file = path, outfile = tempfile(fileext = ".bib"))
# or
journalabbr::runExample()