I am using natbib to set up the bibliography in a latex document. I would like citations to appear in the text as:
Author 1 et al., 2022
In the bibliography, I would like the citation to appear with a maximum of three authors. For example:
Author 1, Author 2, Author 3, et al. 2022, journal, page, number
I am currently using:
\usepackage[]{natbib}
...
...
\bibliographystyle{plainnat}
\bibliography{literatur}
which writes the citation as I want, but writes all the authors in the bibliography.
Is there a simple way to have max three authors in the bibliography with natbib? Or possible alternatives with bibtex?
Here an alternative using
biblatex(make sure to compile with biber instead of bibtex)