bibtex_core_data: Makes a 'bibtex' entry from an output of 'abstract_retrieval'...

Description Usage Arguments Value Note Examples

View source: R/bibtex_core_data.R

Description

Makes a bibtex entry from an output of abstract_retrieval or article_retrieval

Usage

1

Arguments

x

output of abstract_retrieval or article_retrieval, with both get_statement and content

Value

A character vector of bibtex values

Note

Adapted from https://github.com/pybliometrics-dev/pybliometrics/blob/master/pybliometrics/scopus/abstract_retrieval.py

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
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)
}

Example output



rscopus documentation built on Sept. 18, 2019, 1:03 a.m.