1

I'm having trouble with the reference list when I have many authors. In the text the reference is presented as (Svensson et. al 2019) or Svensson et. al (2019), as I want it to be. But in the reference list I also got "et. al", when I'm wanting all the names to be presented in the list instead.

Do you know how to change that?

I have the following setting: \usepackage[backend=biber, style=authoryear]{biblatex} and in the .bib file I have the names like this: author={Svensson, L. and Andersson, B}(or sometimes, but with the same problem author={Svensson, L. and B. Andersson}).

1 Answers1

1

use

\usepackage[style=authoryear,maxbibnames=99]{biblatex}

Using backend=biber is the default for years.

user187802
  • 16,850