ZoteroAdd {c2z} | R Documentation |
Add items to Zotero list
Description
Use identifiers or predefined data to add to the Zotero list
Usage
ZoteroAdd(zotero, metadata = NULL, doi = NULL, isbn = NULL, silent = FALSE)
Arguments
zotero |
A list with information on the specified Zotero library (e.g., id, API key, collections, and items) |
metadata |
Predefined metadata in Zoter-format, Default: NULL |
doi |
Use |
isbn |
Use |
silent |
c2z is noisy, tell it to be quiet, Default: FALSE |
Details
Please see https://oeysan.github.io/c2z/
Value
Will add data to the Zotero list
Examples
# Add items from `ZoteroIsbn` to the default Zotero list
example <- ZoteroAdd(
Zotero(
id = "9913421",
api = "RqlAmlH5l1KPghfCseAq1sQ1"
),
isbn = "978-1529797138"
)
# Print index using `ZoteroIndex`
if (any(nrow(example$items))) {
ZoteroIndex(example$items) |>
dplyr::select(name) |>
print(width = 80)
}
[Package c2z version 0.2.0 Index]