0

It seems like the number of authors which are shown in BibLaTeX before the rests gets pruned by "et al." is "random". Is there some way to set that to a value n? My supervisor wants to explicitly see the first 5 authors.

My style is the following:

\usepackage[german]{babel}

\usepackage[backend=biber, style=alphabetic, natbib=true, hyperref=true, sorting=anyt ]{biblatex}

Hemmelig
  • 372

1 Answers1

1

Use maxcitenames and mincitenames:

\usepackage[german]{babel}

\usepackage[backend=biber, style=alphabetic, natbib=true, hyperref=true, sorting=anyt, maxcitenames=5, mincitenames=5, ]{biblatex}

DG'
  • 21,727