Query DataCite by DOI and fetch metadata
Details
Please see https://oeysan.github.io/c2z/
Examples
# \donttest{
# `DoiDatacite` is called from `ZoteroDoi` (if item found)
example <- ZoteroDoi("10.17605/OSF.IO/7HZ4P")
# Use `ZoteroIndex` to print
# Print index using `ZoteroIndex`
if (any(nrow(example$data))) {
ZoteroIndex(example$data) |>
dplyr::select(name) |>
print(width = 80)
# Display catalog
example$data$libraryCatalog
}
#> # A tibble: 1 × 1
#> name
#> <chr>
#> 1 Skaar & Reber (2022) Alone or Together: Supplemental materials
#> [1] "DOI.org (Datacite)"
# }