biblatex 生成的参考文献中的括号不一致

biblatex 生成的参考文献中的括号不一致

使用以下命令

\usepackage[style=numeric, backend=biber, seconds=true, date=iso, urldate=iso, maxcitenames=2]{biblatex}
...

    \printbibliography[heading=bibintoc]    

似乎导致出版日期前后的括号不一致。第一个参考文献没有括号,接下来的三个有,第五个也没有。有人能给我解释一下吗?除了“它们是一致的”之外,该期刊没有其他引用要求,所以如果这在某种意义上是一致的,我想这是可以的。

在此处输入图片描述

答案1

看到的输出在方式上是一致的:@articles 的出版年份在括号中,而其他类型的出版年份则不在。

至于为什么会这样,我们只能推测。年份信息通常由volumenumber暗示@article,因此将年份放在括号中是有意义的。(顺便说一句,volume在这种情况下, 的德语翻译通常是贾尔冈,其中已经包含了对“年份”的引用。)这并非只在biblatex的标准样式中发现的内容(尽管它比其他设计选择少见一些):《芝加哥格式手册》要求类似的行为(https://www.chicagomanualofstyle.org/tools_citationguide/citation-guide-1.html)。

如果您想去掉括号,一个简单的方法是biblatex-ext使用 的issuedate字段格式。您只需从 切换style=numeric,到即可style=numeric-ext,

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=ext-numeric]{biblatex}

\DeclareFieldFormat{issuedate}{#1}
\renewcommand*{\volnumdatedelim}{\addcomma\space}

\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{sigfridsson,worman,geer,nussbaum}

\printbibliography
\end{document}

Emma Sigfridsson 和 Ulf Ryde。《从静电势和矩推导原子电荷的方法比较》。刊于:《计算化学杂志》19.4,1998 年,第 377-395 页。doi:10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P。

相关内容