Biblatex 錯誤地使用 et。等人。三位作者的 APA 風格引用

Biblatex 錯誤地使用 et。等人。三位作者的 APA 風格引用

我遇到一個問題,biblatex 錯誤地使用了 et。等人。三作者引用的縮寫。如果我理解正確的話,APA 風格規定顯示第一篇和後續參考文獻的所有作者,最多三位作者。

這是我的程式碼:

\documentclass{article}
\usepackage[utf8]{inputenc}

\begin{filecontents}{bibfile.bib}
@article{Gaynor2016,
author = {Gaynor, Martin and Propper, Carol and Seiler, Stephan},
doi = {10.1257/aer.20121532},
issn = {00028282},
journal = {American Economic Review},
number = {11},
pages = {3521--3557},
pmid = {29553210},
title = {{Free to choose? Reform, choice, and consideration sets in the English national health service}},
volume = {106},
year = {2016}
}
\end{filecontents}

\usepackage[style=apa,natbib]{biblatex}
\addbibresource{bibfile.bib} 

\begin{document}

\citet{Gaynor2016}

\printbibliography

\end{document}

這會產生:

螢幕截圖

這裡出了什麼問題?

答案1

請注意,biblatexstyle=apa不再實作 APA 手冊第六版的格式指南;該樣式現在實現了第七版的樣式。第 6 版和第 7 版產生的輸出在許多地方有所不同。

其中一個變更涉及處理三位或更多作者的出版物的引用標註:第七版表示從第一次引用開始將標註截斷為「第一個姓氏等」。如果條目同時具有 adoiurl字段,另一個變更會影響顯示的內容:在第 7 版中,url顯示字段的內容,而在第 6 版中顯示字段的內容。doi顯示該欄位的內容。 (無論哪種方式,載入xurl套件來處理長 URL 字串的排版都是一個好主意。)

如果您需要第 6 版的行為,您應該style=apa6在載入時指定biblatex

在此輸入影像描述

\documentclass{article}
\begin{filecontents}[overwrite]{mybib.bib}
% https://www.aeaweb.org/articles?id=10.1257/aer.20121532
@article{gps:2016,
Author = {Gaynor, Martin and Propper, Carol and Seiler, Stephan},
Title  = {Free to Choose? {Reform}, Choice, and Consideration Sets in the {English National Health Service}},
Journal= {American Economic Review},
Volume = {106},
Number = {11},
Year   = {2016},
Month  = {November},
Pages  = {3521-57},
DOI    = {10.1257/aer.20121532},
URL    = {https://www.aeaweb.org/articles?id=10.1257/aer.20121532},
}
\end{filecontents}

\usepackage[style=apa]{biblatex} % set 'style=apa6' if 6th-ed. formatting is required
\addbibresource{mybib.bib}
\usepackage{xurl}

\begin{document}
\cite{gps:2016}
\printbibliography
\end{document}

相關內容