Learn R Programming

rscopus (version 0.8.1)

bibtex_core_data: 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)

Value

A character vector of bibtex values

Arguments

x

output of abstract_retrieval or article_retrieval, with both get_statement and content

Examples

Run this code
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("84929707579", identifier = "scopus_id",
   verbose = FALSE)
   res2 = bibtex_core_data(x)
   cat(res2)
}

Run the code above in your browser using DataLab