答案1
看到的输出在方式上是一致的:@article
s 的出版年份在括号中,而其他类型的出版年份则不在。
至于为什么会这样,我们只能推测。年份信息通常由volume
和number
暗示@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}