I'm writing a paper using R Markdown for the first time. Here are my YAML options
---
title: "My path to the Nobel"
author: "J.E. Alcalá"
lang: english
bibliography: data_analysis.bib
csl: apa.csl
output:
word_document:
reference_docx: apa_template.docx
---
When I cite a paper for the firs time it doesn't show all authors. For example [e.g., @maei2009]
should display (e.g., Maei, Zaslavsky, & Wang 2009) the first time I cite that paper, but instead I get (e.g., Maei et al. 2009). Probably is something stupid but I'm really new on R Markdown, so I don't even know where to look for an answer (despite I have tried).
An answer or a reference to how fix this will be very useful.
Thank you!