按作者姓氏然后按年份对书目进行排序?

按作者姓氏然后按年份对书目进行排序?

我想按作者姓氏和出版年份对我的参考文献列表进行排序。

这是我使用的代码。

\usepackage[%
  backend=bibtex      % biber or bibtex
,style=authoryear    % Alphabeticalsch
%,style=numeric-comp  % numerical-compressed
 ,sorting=none        % no sorting
 ,sortcites=true      % some other example options ...
 ,bibencoding=ascii
 ,block=none
 ,indexing=false
 ,citereset=none
 ,isbn=true
 ,url=true
 ,doi=true            % prints doi
 ,natbib=true         % if you need natbib functions
]{biblatex}

答案1

例如\newrefcontext[sorting=nyt]之前尝试\printbibliography

\documentclass{article}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{*}
\newrefcontext[sorting=nyt]
\printbibliography
\end{document}

相关内容