需要在主文档中填写作者列表和第一作者姓名

需要在主文档中填写作者列表和第一作者姓名

我想在文档正文中打印,首先使用 \fullcite{myref} 打印包含所有作者姓名的参考文献,在后面的部分中只打印作者等。在参考文献部分,也只使用作者等样式 \citeauthor{myref}。 \fullcite{} 工作正常,但 \citeauthor{myref} 也给出了完整列表,我在这里只想要第一作者...我可以在运行时更改设置吗?

主要代码 代码

\usepackage[
    
    backend=biber, %use modern biber instead of old natbib
   
    
    maxcitenames=30, %when using \textcite, at max print 2 author names
    mincitenames=1, %when using \textcite and we have many authors (et al), print 1 author name then et al
    minbibnames=1, %in bibliography, when there are many authors (et al), print 1 author name then et al
    maxbibnames=4 %in bibliography, print at maximum 6 author names
]{biblatex} 

相关内容