biblatex가 et를 잘못 사용하는 문제가 있습니다. 알. three-athor 인용의 약어입니다. 내가 올바르게 이해했다면 APA 스타일은 최대 3명의 저자가 포함된 첫 번째 및 후속 참조에 대한 모든 저자를 표시하도록 규정합니다.
내 코드는 다음과 같습니다.
\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
biblatex는 style=apa
더 이상 APA 매뉴얼 6판의 형식 지정 지침을 구현하지 않습니다. 스타일은 이제 7판의 스타일을 구현합니다. 6판과 7판에서 생성된 출력은 여러 부분에서 다릅니다.
변경 사항 중 하나는 저자가 3명 이상인 출판물에 대한 인용 표시를 처리하는 것과 관련됩니다. 7판에서는 첫 번째 인용부터 시작하여 "첫 번째 성 외"에 대한 설명을 자르도록 명시되어 있습니다. 또 다른 변경 사항은 항목에 a doi
와 url
필드가 모두 있는 경우 표시되는 내용에 영향을 미칩니다. 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}