书目顺序

书目顺序

我对参考书目的排序有些问题。我需要先按作者排序参考书目的元素,然后按年份排序。现在我的文档中有些文章的显示方式如下:

参考书目

如您所见,它们首先按作者排序,然后按标题排序。我如何修改排序?这是 MWE:

\documentclass{report}
\usepackage[autostyle,italian=guillemets]{csquotes}
\usepackage[backend=biber,bibstyle=numeric,citestyle=numeric]{biblatex}
\addbibresource{biblio.bib}
\begin{document}
\addcontentsline{toc}{chapter}{\bibname}
\printbibliography
\end{document}

答案1

sorting=nyt加载时使用选项biblatex

\usepackage[...,sorting=nyt,...]{biblatex}% http://ctan.org/pkg/biblatex

这应该告诉你首先按名称对参考书目进行排序,然后按主题biber对参考书目进行排序。nyt

或者,阅读biblatex文档,具体部分4.5.5 排序(第 160 页),您可以在其中使用 声明自己的排序方案\DeclareSortingScheme

相关内容