为什么 biblatex-publist 在参考文献列表中生成奇数年份的附录

为什么 biblatex-publist 在参考文献列表中生成奇数年份的附录

我真的无法用 MWE 重现这一点,但为什么 biblatex publist 会产生这些带有字母的奇数年份附加内容?引用列表中没有其他匹配的参考文献与这些匹配,例如,没有其他 K_ss、P__acko、G___fe 2024,那么为什么它会打印 K_ss、P__acko G__efe 2024b

参考文献列表

我已经验证 bib 文件中只有一个条目用于有问题的参考列表。

使用 texlive 2023 安装,biblatex 3.19

代码如下,不可重现。

\documentclass{article}
\usepackage{grffile}
\listfiles
\usepackage{pdfpages}
\usepackage[bibstyle=publist, 
doi=false,
date=year, 
url=false, 
maxbibnames=10]{biblatex}

\plauthorname[Simon]{Kiss}

\addbibresource{/Users/skiss/OneDrive - Wilfrid Laurier University/CV/kiss_publications_zotero.bib}
\DeclareFieldFormat{labelnumber}{\ifkeyword{invited}{*#1}{#1}}
% check if entry's date >= {yyyy}{mm}{dd} 

\defbibcheck{recent}{%
\iffieldint{year}
{\ifnumless{\thefield{year}}{2015}
{\skipentry}
{}}
{\skipentry}}

\begin{document}

\tableofcontents

\nocite{*}
\section{Research and Scholarship Dossier}

\subsection{Description of Research Programme}

\subsection{Publications and Knowledge Dissemination}
%[*] denotes invited

\printbibliography[title={Peer-Reviewed Journal Articles},type={article}, keyword={journalarticle}, keyword={peerreviewed}, keyword={inprint}, check=recent]
\printbibliography[title={Non-Peer-Reviewed Journal articles}, type={article}, keyword={journalarticle}, keyword={notpeer}, keyword={inprint}, check=recent]
%\printbibliography[title={Peer-Reviewed Book Chapters}, keyword={chapter}, notkeyword={forthcoming}, check=recent]
%\printbibliography[title={Scholarly Conference Papers}, keyword={conference}, notkeyword={forthcoming}, check=recent]
%\printbibliography[title={Reports and Working Papers}, keyword={report}, notkeyword={forthcoming}, check=recent]
%\printbibliography[title={Book Reviews}, keyword={bookreview}, notkeyword={forthcoming}, check=recent]
%\printbibliography[title={Guest Lectures and Presentations}, keyword={guestlecture}, check=recent]
%\printbibliography[title={Op-Eds and Scholarly Blog Posts}, keyword={blog},notkeyword={forthcoming}, check=recent]
%
%\subsection*{Other Scholarship}
%
%\printbibliography[title={Peer Reviews},keyword={peerreview}, check=recent]
%
%%\subsubsection{Grants}
%\printbibliography[title={External Grants}, keyword={grant}, keyword={successful}, notkeyword={forthcoming}, check=recent]
%\printbibliography[title={Datasets}, keyword={data}, check=recent]

%\subsubsection{Pre-Registrations}





\section{Teaching Dossier}

\section{Service Dossier}

\section{Appendix A: Copies of Publications}
\includepdf[pages=-]{/Users/skiss/OneDrive - Wilfrid Laurier University/my.papers/education_income_divide.pdf}



\end{document}

相关内容