排序问题,字母顺序书目

排序问题,字母顺序书目

当我编译这个MWE时:

\documentclass[numbers=noendperiod,
               fontsize=11pt, 
               twoside, 
               a4paper]{scrbook}

\usepackage[backend=biber, autolang=hyphen, style=ieee-alphabetic, 
            maxnames=10, dashed=true]{biblatex}

\usepackage{filecontents}
\begin{filecontents}{bad-bib.bib}
@book{cohn-algebra,
    Author = {Paul Moritz Cohn},
    Title = {Universal Algebra},
    Publisher = {D. Reidel Publishing Company},
    Year = {1981}}

@book{cohn-algebra-gra,
    Author = {Paul Moritz Cohn},
    Title = {Basic Algebra: groups, rings, and fields},
    Publisher = {Springer},
    isbn =  {978-1-4471-1060-6},
    Year = {2003}}

@book{cohn,
    Author = {Donald L. Cohn},
    Title = {Measure Theroy},
    Publisher = {Birkh{\"a}use, Boston},
    Year = {1980}}
\end{filecontents}

\addbibresource{bad-bib.bib}

\begin{document}
\chapter{The first}
This is the document. \cite{cohn-algebra,cohn-algebra-gra,cohn}

\printbibliography

\end{document}

我在参考书目排序方面遇到了错误。有什么帮助吗?

答案1

您缺少 biblatex 选项sorting=nyt- 名称,然后是年份,然后是标题。如果您添加此选项并执行完整的重新编译循环 (latex-biber-latex),您将获得以下排序的参考书目:

在此处输入图片描述

请注意,DL Cohn 现在位于两个 PM Cohn 条目之前(因为“Donald”至少按字母顺序位于“Paul”之前),并且Coh80位于 之前Coh03

相关内容