答案1
这是评论中链接的答案的简化版本。
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\defbibcheck{recent}{
\iffieldint{year}
{\ifnumless{\thefield{year}}{2000}
{\skipentry}
{}}
{\skipentry}}
\defbibcheck{older}{
\iffieldint{year}
{\ifnumgreater{\thefield{year}}{2000}
{\skipentry}
{}}
{\skipentry}}
\begin{document}
\textcite{cms,coleridge,companion,cotton,ctan,doody,gaonkar,gaonkar:in,geer,gerhardt,gillies}
\printbibliography[check=recent,title=Recent]
\printbibliography[check=older,title=Older]
\end{document}