ReadZotero | R Documentation |
Get Bibliography Information From a Zotero Library.
ReadZotero(
user,
group,
.params,
temp.file = tempfile(fileext = ".bib"),
delete.file = TRUE
)
user |
Zotero userID for use in calls to the Zotero API. This is not
the same as your Zotero username. The userID for accessing user-owned
libraries can be found at |
group |
Zotero groupID for use in calls to the Zotero API. Only one
of |
.params |
A named list of parameters to use in requests to the Zotero API with possible values
|
temp.file |
character; file name where the BibTeX data returned by Zotero will be temporarily written. |
delete.file |
boolean; should |
An object of class BibEntry
https://www.zotero.org/support/dev/server_api/v2/read_requests
BibEntry
## Not run:
## first two entries in library with bayesian in title
ReadZotero(user = "1648676", .params = list(q = "bayesian",
key = "7lhgvcwVq60CDi7E68FyE3br", limit=2))
## Search specific collection
## collection key can be found by reading uri when collection is selected in Zotero
ReadZotero(user = "1648676", .params=list(q = "yu", key = "7lhgvcwVq60CDi7E68FyE3br",
collection = "3STEQRNU"))
## Search by tag
## Notice the issue with how Zotero uses a TechReport entry for arXiv manuscripts
## This is one instance where the added fields of BibLaTeX are useful
ReadZotero(user = "1648676", .params=list(key = "7lhgvcwVq60CDi7E68FyE3br",
tag = "Statistics - Machine Learning"))
## To read these in you must set check.entries to FALSE or "warn"
old.opts <- BibOptions(check.entries = FALSE)
length(ReadZotero(user = "1648676", .params = list(key = "7lhgvcwVq60CDi7E68FyE3br",
tag = "Statistics - Machine Learning")))
## Example using groups
ReadZotero(group = "13495", .params = list(q = "Schmidhuber",
collection = "QU23T27Q"))
BibOptions(old.opts)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.