biblatex apa 样式不显示论文集的页码

biblatex apa 样式不显示论文集的页码

我正在运行 biblatex + biber。当参考书目以 APA 格式打印时,@inproceeding 条目没有附加任何页码。对于其他格式(例如 MLA),不会发生这种情况。

输出如下:

在此处输入图片描述

这是我的最小工作示例:

样本

\listfiles
\documentclass[12pt]{report}

\usepackage[
backend=biber,
style=apa,
backref=false,
sortcites=true,
sorting=nyt,
citestyle=authoryear,
mincitenames=1,
maxcitenames=2
]{biblatex}
\usepackage[american]{babel}

\addbibresource{sample.bib}

\begin{document}
\section{Hello}
\label{sec:hello}

\parencite{test}

\printbibliography
\end{document}

样本

@inproceedings{test,
  author = {Test Author},
  title = {Test title},
  pages = {108--115},
  booktitle = {Test Conference Proceedings},
  year = 2016,
}

以下是 \listfiles 的结果:

 *File List*
  report.cls    2019/12/20 v1.4l Standard LaTeX document class
  size12.clo    2019/12/20 v1.4l Standard LaTeX file (size option)
biblatex.sty    2019/12/01 v3.14 programmable bibliographies (PK/MW)
pdftexcmds.sty    2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO)
infwarerr.sty    2019/12/03 v1.5 Providing info/warning/error messages (HO)
   iftex.sty    2019/11/07 v1.0c TeX engine tests
 ltxcmds.sty    2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
etoolbox.sty    2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
  keyval.sty    2014/10/28 v1.15 key=value parser (DPC)
kvoptions.sty    2019/11/29 v3.13 Key value format for package options (HO)
kvsetkeys.sty    2019/12/15 v1.18 Key value parser (HO)
  logreq.sty    2010/08/04 v1.0 xml request logger
  logreq.def    2010/08/04 v1.0 logreq spec v1.0
  ifthen.sty    2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
     url.sty    2013/09/16  ver 3.4  Verb mode for urls, etc.
  blx-dm.def    2019/12/01 v3.14 biblatex localization (PK/MW)
     apa.dbx    2020/02/01 v9.5 APA biblatex style data model
blx-compat.def    2019/12/01 v3.14 biblatex compatibility (PK/MW)
biblatex.def    2019/12/01 v3.14 biblatex compatibility (PK/MW)
standard.bbx    2019/12/01 v3.14 biblatex bibliography style (PK/MW)
     apa.bbx    2020/02/01 v9.5 APA biblatex references style
authoryear.cbx    2019/12/01 v3.14 biblatex citation style (PK/MW)
biblatex.cfg    
   babel.sty    2020/02/14 3.40 The Babel package
 british.ldf    2017/06/06 v3.3r English support from the babel system
l3backend-pdfmode.def    2020-02-03 L3 backend support: PDF mode
 british.lbx    2019/12/01 v3.14 biblatex localization (PK/MW)
 english.lbx    2019/12/01 v3.14 biblatex localization (PK/MW)
american.lbx    2019/12/01 v3.14 biblatex localization (PK/MW)
american-apa.lbx    2020/02/01 v9.5 APA biblatex localisation
english-apa.lbx    2020/02/01 v9.5 APA biblatex localisation
british-apa.lbx    2020/02/01 v9.5 APA biblatex localisation
  sample.bbl
 ***********

答案1

您的 MWE 使用 MLA,而不是 APA。在我更改它之后,页码按预期显示。但是,我使用的是 biblatex-apa v9.14,而您使用的是 v9.5。尝试更新软件包。

相关内容