在所需的主文件中填寫作者名單和第一作者姓名

在所需的主文件中填寫作者名單和第一作者姓名

我想在文件的正文中列印,首先使用 \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} 

相關內容