使用 `\citeauthor` (biblatex) 引用多位作者时缺少“and”

使用 `\citeauthor` (biblatex) 引用多位作者时缺少“and”

有没有办法\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”。

在此处输入图片描述

相关内容