Description Usage Arguments Value Note Examples
View source: R/bibtex_core_data.R
Makes a bibtex
entry from an output of
abstract_retrieval
or article_retrieval
1 |
x |
output of |
A character vector of bibtex values
Adapted from https://github.com/pybliometrics-dev/pybliometrics/blob/master/pybliometrics/scopus/abstract_retrieval.py
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)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.