如何使用 apa 样式在 biblatex 中添加百科全书条目的卷号?

如何使用 apa 样式在 biblatex 中添加百科全书条目的卷号?

我在论文中使用 APA 7th biblatex。我最近注意到,每当我引用百科全书条目或多卷书时,卷号都不会出现在参考书目条目中。如何添加它?

我目前的 MWE:

\documentclass{article}
\usepackage{csquotes}
\usepackage[american, bidi=basic]{babel}

\usepackage[
    backend=biber,
    style=apa,
    sortcites=true,
    backref=true,
    backrefstyle=three,
    abbreviate=true,
    block=space
]{biblatex}
\DeclareFieldFormat{apacase}{#1} % Title casing in APA

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}

@book{ej,
  title = {Encyclopaedia {Judaica}},
  editor = {Skolnik, Fred and Berenbaum, Michael},
  date = {2007},
  edition = {2},
  publisher = {Thomson Gale},
  location = {Detroit},
  isbn = {978-0-02-866097-4},
}
@inreference{ej:plants,
  title = {Plants},
  booktitle = {Encyclopaedia {Judaica}},
  author = {Feliks, Jehuda},
  editor = {Skolnik, Fred and Berenbaum, Michael},
  date = {2007},
  edition = {2},
  volume = {16},
  pages = {219-225},
  publisher = {Thomson Gale},
  location = {Detroit},
  isbn = {978-0-02-865944-2},
}
\end{filecontents}

\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
\parencite{ej}
\parencite{ej:plants}
\printbibliography
\end{document}

这将导致以下结果: 在此处输入图片描述

但我想要这样的结果: 在此处输入图片描述

我怎样才能做到这一点?

相关内容