必要なメイン文書の著者リストと第一著者名を記入してください

必要なメイン文書の著者リストと第一著者名を記入してください

ドキュメントの本文に、最初に \fullcite{myref} を使用してすべての著者名を含む参考文献を印刷し、後のセクションでは著者らのみを \citeauthor{myref} で参照部分にも著者らのみのスタイルで印刷したいです。\fullcite{} は期待どおりに動作していますが、\citeauthor{myref} でも完全なリストが表示されます。ここでは第 1 著者のみを表示したいのですが... 実行時に設定を変更できますか?

メインコードコード

\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} 

関連情報