The APA csl style is supposed to format in-text citations as, for instance, (Fenner, 2019), that a single author followed by a date. However, when used with Quarto, the in-text citation shows up as (Fenner et al, 2019)... note the extraneous "et al". Is this a bug or is there something that one should do in Quarto to make the csl behave as expected?
@article{fenner2019,
title = {A data citation roadmap for scholarly data repositories},
author = {Fenner, Martin and Crosas, {Mercè} and Grethe, Jeffrey S. and Kennedy, David and Hermjakob, Henning and Rocca-Serra, Phillippe and Durand, Gustavo and Berjon, Robin and Karcher, Sebastian and Martone, Maryann and Clark, Tim},
year = {2019},
month = {04},
date = {2019-04-10},
journal = {Scientific Data},
volume = {6},
number = {1},
doi = {10.1038/s41597-019-0031-8},
url = {http://dx.doi.org/10.1038/s41597-019-0031-8},
langid = {en}
}
The APA csl style can be downloaded from the link above.
Where is the APA style reference where this is explain ? I can see that the examples at Zotero Style Repository also have the et al. which is there when there is several authors to the bibliography entry
Thanks for your response. You are right: the APA style includes the "et al". I got confused by the interface Visual CSL Editor. The style from the Colorado School of Biomedical Engineering was actually the one closer to my intent... and it works as expected with Quarto (so I edited the title of this post).
That said, it took me a while to understand how they suppressed the display of "et al" so I will document below what's needed. Essentially, the secret is to add <term name="et-al"/> in the locale tag.
<locale xml:lang="en">
<terms>
<term name="editortranslator" form="short">
<single>ed. & trans.</single>
<multiple>eds. & trans.</multiple>
</term>
<term name="translator" form="short">trans.</term>
<term name="et-al"/>
</terms>
</locale>
The inline citation tags options must also be set with <citation et-al-min="2" et-al-use-first="1"...