Make your reproducible research easier by learning to use Zotero with Nüance-R
Nüance-R provides an Addin called citr
(Aust et al. 2019) to insert citations from a Zotero with a bib file. citr
provides functions and an addin to search a BibTeX-file to create and insert formatted Markdown citations into the current document. (Aust and Barth 2019)
If you do not already have Zotero yet, download the last version now! Also, install the “Zotero Connector” avaible on the same link to save to Zotero from your browser directly.
Better BibTeX (BBT) is an extension for Zotero and Juris-M that makes it easier to manage bibliographic data, especially for people authoring documents using text-based toolchains (e.g. based on LaTeX / Markdown).
First, you need to install BBT by downloading the latest release
Once it is done, open Zotero and do the following:
Before using the Addin citr
, make sure that your YAML contain this 3 options:
bibliography: nameOfTheBibFile.bib
-> To choose the file containing your referencesbiblio-style: nameOfTheBiblioStyle
-> To choose the style of your bibliographyoutput:
pdf_document:
citation_package: biblatex
---
: "nameOfYourDocument"
title: "nameOfTheAuthor"
author: "12/07/2019"
date: nameOfTheBibFile.bib
bibliography-style: nameOfTheBiblioStyle
biblio:
output:
pdf_document: biblatex
citation_package---
Now that your YAML is setup, you can click on the “Addins” button.
When you write “citation” in the search bar, you have an option labeled “Insert citations”.
Click on it! A window will open.
All your references will appear.
If it happens that you are not using the Nüance-R and instead a local Rstudio without the citr
addin, here an option to make citations.
You still have to supply a .bib file to the bibliography parameter in the YAML (bibliography: nameOfTheBibFile.bib) for the R Markdown file knows where to look for reference.
Here some citation examples:
Citation type | Syntax | Rendered citation |
---|---|---|
Citation within parentheses | [@james_1890] | (James, 1890) |
Multiple citations | [@james_1890; @bem_2011] | (Bem, 2011; James, 1890) |
In-text citations | @james_1890 | James (1890) |
Year only | [-@bem_2011] | (2011) |
Additional information can be added to citations as pre- or postfixes. Pre- and postfixes can simply be added to each citation by writing inside the brackets ([e.g., @bem_2011]). Note that pre- and postfixes are bound to the enclosed citation, not to the set of all citations. Hence, a prefix will be reorder together with its citation, which may be undesirable. For example, [e.g., @james_1890; @bem_2011] yields (e.g., James, 1890; Bem, 2011). There is no way to prevent this behavior, so mind the alphabetical order of citations.
For attribution, please cite this work as
Warin (2020, March 25). Thierry Warin, PhD: [R Course] How to: Use Zotero with RStudio. Retrieved from https://warin.ca/posts/rcourse-howto-usezoterowithnuancer/
BibTeX citation
@misc{warin2020[r, author = {Warin, Thierry}, title = {Thierry Warin, PhD: [R Course] How to: Use Zotero with RStudio}, url = {https://warin.ca/posts/rcourse-howto-usezoterowithnuancer/}, year = {2020} }