Biblatex 注释出现两次

Biblatex 注释出现两次

我在参考文献中添加了注释,因为参考书目中的参考文献没有显示卷数等。我想要以下参考文献: 在此处输入图片描述

如果没有注释,则不会显示卷数和页数,但是如果有注释,则会出现两次。 在此处输入图片描述

\documentclass[12pt]{report}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\renewcommand{\baselinestretch}{1.5}
\usepackage{lipsum}

\usepackage[english]{babel}
\usepackage[backend=biber, maxcitenames=2, style=apa, sorting=anyt]{biblatex}
\DeclareNameAlias{sortname}{family-given}
\addbibresource{bibliography.bib}
\usepackage[autostyle, english = british]{csquotes}

\begin{document}

\lipsum[1]
\parencite{b20_taskforce_open_2017}

\printbibliography

\end{document}

以及以下 bib 条目:

@incollection{heckman1999,
  title={The economics and econometrics of active labor market programs},
  author={Heckman, James J and LaLonde, Robert J and Smith, Jeffrey A},
  booktitle={Handbook of labor economics},
  volume={3},
  pages={1865--2097},
  year={1999},
  publisher={Elsevier},
  note = {Vol. 3, pp. 1865-2097},
  doi = {10.1016/S1573-4463(99)03012-6},
  url = {https://linkinghub.elsevier.com/retrieve/pii/S1573446399030126}
}

相关内容