Natbib: maximum number of authors in bibliography

3.7k Views Asked by At

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?

1

There are 1 best solutions below

0
samcarter_is_at_topanswers.xyz On

Here an alternative using biblatex (make sure to compile with biber instead of bibtex)

\documentclass{article}

\usepackage[style=authoryear,minbibnames=3,natbib=true]{biblatex}
\addbibresource{biblatex-examples.bib}

\begin{document}

\cite{murray}

\printbibliography

\end{document}

enter image description here