1 year ago
#260997
feder80
Using a chicago style in Xaringan Theme
I am using the Xaringan Theme for my RStudio Markdown presentations.
All works fine but I want to change the bibliography style from "authoryear" to the Chicago Manual of Style Author-Date Version.
Does anyone know how to do that?
Here is the code so far:
```{r, load_refs, include=FALSE, cache=FALSE}
library(RefManageR)
BibOptions(check.entries = FALSE,
bib.style = "authoryear",
cite.style = "authoryear",
style = "markdown",
hyperlink = FALSE,
dashed = FALSE)
lit <- ReadBib("pwaLiterature.bib", check = FALSE)
```
r
citations
xaringan
0 Answers
Your Answer