使用 Overleaf 的 BibLatex APA 中书籍章节的编辑者姓名重复且没有页码

使用 Overleaf 的 BibLatex APA 中书籍章节的编辑者姓名重复且没有页码

我在 Overleaf 上的 Biblatex 中使用 apa 格式,当我引用编辑卷中的某一章节时,我会得到两次对编辑的提及。

在 APA 格式中,应该只提及这两个中的第二个。

此外,页码也没有按应有的方式出现。

有人能帮我解决这个问题吗?

下面有两个示例,带有屏幕截图和 bib 条目

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

\title{example}
\author{cameron}
\date{May 2020}

\usepackage[style=apa, backend=biber]{biblatex}
\addbibresource{Morin220520.bib}
\usepackage{graphicx}

\begin{document}
\cite{goldberg_constructionist_2013}
\cite{nagle_double_2003}


\printbibliography
\end{document}

在此处输入图片描述

@incollection{goldberg_constructionist_2013,
    address = {Oxford},
    title = {Constructionist approaches},
    booktitle = {The {Oxford} {Handbook} of {Construction} {Grammar}},
    publisher = {Oxford University Press},
    author = {Goldberg, Adele},
    editor = {Hoffmann, Thomas and Trousdale, Graeme},
    year = {2013},
    pages = {15--31}
}

@incollection{nagle_double_2003,
    address = {Berlin, Boston},
    title = {Double modals in the {Southern} {United} {States}: syntactic structure or syntactic structures?},
    booktitle = {Modality in {Contemporary} {English}},
    publisher = {Mouton de Gruyter},
    author = {Nagle, Stephen},
    editor = {Facchinetti, Roberta and Palmer, Frank and Krug, Manfred},
    year = {2003},
    pages = {359--72}
}

答案1

这是早期版本的一个错误biblatex-apahttps://github.com/plk/biblatex-apa/issues/86,稍后再进行相关修复https://github.com/plk/biblatex-apa/issues/106https://github.com/plk/biblatex-apa/issues/110)。使用最新版本,biblatex-apa输出结果与预期一致。

Goldberg, A. (2013)。建构主义方法。收录于 T. Hoffmann 和 G. Trousdale (编) 的《牛津建构语法手册》(第 15-31 页)。牛津大学出版社。//Nagle, S. (2003)。美国南部的双情态动词:句法结构还是句法结构?收录于 R. Facchinetti、F. Palmer 和 M. Krug (编) 的《当代英语中的情态》(第 359-72 页)。Mouton de Gruyter。

当前版本是biblatex-apav9.12(2020-05-05),这是您想要获得的最低版本。

不幸的是,Overleaf 的过时biblatex-apa 版本仍然存在错误。也许如果你足够烦扰他们的客户支持,他们会考虑更新biblatex-apa

使用biblatex-apa9.12 理论上可以将.bbx.cbx和文件上传到 Overleaf 项目并使用它们。如果需要更现代的版本,.dbx将来.lbx可能无法实现biblatex-apabiblatex文件上传到 Overleaf 项目并使用它们。如果需要比Overleaf 上可用的和 Biber使用 biblatex-apa 引用不会输出 APA7th 格式?

相关内容