有没有办法\citeauthor
使用“and”作为最后一条条目的分隔符?目前所有条目都用“,”分隔。
\documentclass{article}
\usepackage[
backend=biber,
style=nature,
citestyle=numeric-comp,
maxbibnames=50,
sorting=none,
sortcites,
doi=true,
isbn=false,
url=false,
eprint=false]{biblatex}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{b1,
author={Auth1 and Auth2},
title={Title1},
year={2000},
publisher={Pub1},
}
@book{b2,
author={Auth2 and Auth3 and Auth4},
title={Title2},
year={2000},
publisher={Pub2},
}
@book{b3,
author={Auth3 and Auth5},
title={Title3},
year={2000},
publisher={Pub3},
}
\end{filecontents*}
\addbibresource{\jobname.bib}
\begin{document}
\noindent
\textcite{b1,b2}\\
\citeauthor{b2,b3}
\printbibliography
\end{document}
我想要的是类似这样的内容(使用 生成\citeauthor{b2} and \citeauthor{b3}
)。我宁愿不手动输入“and”。