参考书目中随机缺失字段

参考书目中随机缺失字段

我刚刚完成我的论文,并注意到对于编辑卷中发表的一些文章(但不是全部),参考书目中缺少城市和出版商字段。以下是 MWE:

\documentclass[12pt]{article}

\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@incollection{Chiara2002,
    address = {Dordrecht},
    author = {{Dalla Chiara}, Maria Luisa and Giuntini, Roberto},
    booktitle = {Handbook of Philosophical Logic},
    edition = {2},
    editor = {Gabbay, Dov M. and Guenthner, Franz},
    pages = {129--228},
    publisher = {Springer},
    title = {{Quantum Logics}},
    volume = {6},
    year = {2002}
}

@incollection{Westerstahl1989,
    address = {Dordrecht},
    author = {Westerst{\aa}hl, Dag},
    booktitle = {Handbook of Philosophical Logic},
    editor = {Gabbay, Dov M. and Guenthner, Franz},
    pages = {1--131},
    publisher = {Kluwer},
    title = {{Quantifiers in Formal and Natural Languages}},
    volume = {4},
    year = {1989}
}

@incollection{Etchemendy2010,
    address = {Oxford},
    author = {Etchemendy, John},
    booktitle = {New Essays on Tarski and Philosophy},
    editor = {Patterson, Douglas},
    pages = {263--299},
    publisher = {Oxford University Press},
    title = {{Reflections on Consequence}},
    year = {2010}
}

@incollection{Russell2018b,
    address = {Cham},
    author = {Russell, Gillian},
    booktitle = {Pluralisms in Truth and Logic},
    editor = {Wyatt, Jeremy and Pedersen, Nikolaj J. L. L. and Kellen, Nathan},
    pages = {331--361},
    publisher = {Palgrave Macmillan},
    title = {{Varieties of Logical Consequence by Their Resistance to Logical Nihilism}},
    year = {2018}
}

@incollection{Cotnoir2018,
    address = {Cham},
    author = {Cotnoir, Aaron J.},
    booktitle = {Pluralisms in Truth and Logic},
    editor = {Wyatt, Jeremy and Pedersen, Nikolaj J. L. L. and Kellen, Nathan},
    pages = {301--329},
    publisher = {Palgrave Macmillan},
    title = {{Logical Nihilism}},
    year = {2018}
}
\end{filecontents*}


%%%%%%%%%%BIBLIOGRAPHY
\usepackage[style=apa6, doi=false, url=false, isbn=false, date=year, natbib=true, uniquename=false]{biblatex}
\setlength\bibitemsep{1.5\itemsep}
\AtEveryBibitem{\clearfield{chapter}} %gets rid of chapters
\DeclareFieldFormat{apacase}{#1} %stops capitalisation
\AtEveryBibitem{\clearfield{number}} %clears issue numbers
\DeclareFieldFormat[article]{volume}{\apanum{#1}} %de-italicises volume numbers

\addbibresource{/Users/James/Documents/MWEs/\jobname.bib}
%%%%%%%%%%%%%%%%%%%%

%%%commands to stop hyphenation in bibliography
\renewcommand*{\bibsetup}{%
    \interlinepenalty=5000\relax
    \widowpenalty=10000\relax
    \clubpenalty=10000\relax
    % no hyphenation in the bibliography
    \hyphenpenalty=10000\exhyphenpenalty=10000\relax
    % increase allowed stretch to avoid overfull boxes
    \setlength{\emergencystretch}{1em}%
    \raggedbottom
    \frenchspacing
    \biburlsetup}
%%%

\title{Missing Fields MWE}

\begin{document}

\maketitle

\noindent For most references to articles in edited volumes (e.g. \citealp{Chiara2002}; \citealp{Westerstahl1989}) the bibliography is fine. However, for some articles in edited volumes, the city and publisher fields are omitted from the bibliography entry (e.g. \citealp{Cotnoir2018}; \citealp{Etchemendy2010}; \citealp{Russell2018b}). I don't understand why because the city and publisher are included in the .bib file

\printbibliography

\end{document}

输出:

在此处输入图片描述

如您所见,其中三个条目缺少城市和出版商字段,但其他两个条目没有。我该如何纠正这个问题?

相关内容