biblatex – 如果 @article 类型的条目中的“数字”字段为空,则删除空括号()

biblatex – 如果 @article 类型的条目中的“数字”字段为空,则删除空括号()

我的.bib文件有 ff 条目:

@article{Albertus2016,
author = {Albertus, Michael and Diaz-Cayeros, Alberto and Magaloni, Beatriz and Weingast, Barry R.},
journal = {World Development},
pages = {154--170},
title = {{Authoritarian Survival and Poverty Traps: Land Reform in Mexico}},
volume = {77},
year = {2016}
}

我的.tex文件在 MWE 中有 ff:

\documentclass{report}


\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

\usepackage[
    backend=biber,
    style=chicago-authordate,
    sorting=nyt,
    natbib=true,
    maxnames=2,
    isbn=false,
    doi=false
]{biblatex}

\addbibresource{References.bib}

\begin{document}

\citet{Albertus2016}

\printbibliography

\end{document}

现在输出如下:

Albertus, Michael 等人,2016 年。“威权生存与贫困陷阱:墨西哥的土地改革”。世界发展77():154-170。

空括号 () 表示发行号。如果某个参考文献没有发行号,我该如何告诉 LaTeX 省略 ()?

相关内容