as_item_tibble | R Documentation |
Converts an items list as returned by
items(as_tibble = FALSE)
to a tibble (with
nested list columns), dropping API metadata fields that are not part of the
items data.
as_item_tibble(items)
items |
A list of Zotero library items as returned by
|
Note that items()
by default already calls this function
internally (as_tibble = TRUE
).
A tibble.
Other Zotero items functions:
add_archive_url()
,
items()
,
write_bib()
# fetch raw result (2 items)
r <- zotero_api(
path = "items",
user = zotero_group_id(197065),
query = list(limit = 2),
fetch_subsequent = FALSE
)
str(r)
# convert to tibble
as_item_tibble(r)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.