Biblatex-abnt:同一作者的年份后缀不显示

Biblatex-abnt:同一作者的年份后缀不显示

当参考文献中同一作者的年份相同时,如何使年份后缀出现?它在引文中起作用:

(作者,2001a;2001b)

但不是在参考文献中:

[...],2001年。

[...],2001年。

\documentclass{article}

\usepackage[utf8]{inputenc}

\usepackage[T1]{fontenc}

\usepackage[brazil]{babel}

\usepackage[
    backend=biber,
    style=abnt,
    ittitles
]{biblatex}

\addbibresource{\jobname.bib}

\begin{filecontents}{\jobname.bib}
 @book{book1,
  author = {Author, A.},
  year = {2001},
  title = {Title 1},
  publisher = {Publisher},
 },
 @book{book2,
  author = {Author, A.},
  year = {2001},
  title = {Title 2},
  publisher = {Publisher},
 },
\end{filecontents}

\begin{document}

\cite{book1,book2}

\printbibliography[heading=none]

\end{document}

答案1

我发现了发生了什么。我使用的样式(abnt)没有此功能,因为 ABNT 的规范不使用它。我写信给负责样式的人,他添加了此选项。现在,如果有人也想在参考文献中使用后缀,他必须使用该选项extrayear

(这些文件还没有在 CTAN 中,但可以从以下位置下载并安装:Github

相关内容