| bibtex_core_data {rscopus} | R Documentation | 
Makes a bibtex entry from an output of
abstract_retrieval or article_retrieval
Description
Makes a bibtex entry from an output of
abstract_retrieval or article_retrieval
Usage
bibtex_core_data(x)
Arguments
| x | output of  | 
Value
A character vector of bibtex values
Note
Adapted from https://github.com/pybliometrics-dev/pybliometrics/blob/master/pybliometrics/scopus/abstract_retrieval.py
Examples
api_key = get_api_key(NULL, error = FALSE)
if (!is.null(api_key)){
   x = abstract_retrieval("S1053811915002700", identifier = "pii",
   verbose = FALSE)
   res = bibtex_core_data(x)
   cat(res)
   x = abstract_retrieval("S1053811915002700", identifier = "pii",
   verbose = FALSE)
   res2 = bibtex_core_data(x)
   cat(res2)
}
[Package rscopus version 0.6.6 Index]