I am working with EMACS/Zotero/rmarkdown. Zotero is linked to EMACS with zotxt.
The in line citations are not following the .csl format correctly. For example, using the American Psychological Association 7th edition (apa.csl) format, in line citations should be in as follow:
(R Core Team, 2022)
But I am getting:
R Core Team (2022)
MRE is:
---
title: "literature review"
author: "Me"
date: "06/22/2022"
output: pdf_document
bibliography: references.json
csl: apa.csl
---
## Test text
This is just a test @rcoreteam2022. That citation should appear as
"(R Core Team, 2022)", but it does not.
## References
Pdf screenshot
The pdf is rendered with:
render("mre.rmd", "pdf_document")
The .csl should be correct, I exported it out of Zotero and the Zotero preview gives the correct format.