How do I have only the first author displayed in citation call-out, when using the natbib package?
There is a question similar to mine, which has never received an accepted answer: BibTeX: Chicago style citation with same first authors
Here is my preamble:
\usepackage[square,authoryear]{natbib}
\bibliographystyle{plainnat}
%...
\bibliography{references}
I use natbib, because it is the one mentioned in the wikibook on LaTeX:
https://en.wikibooks.org/wiki/LaTeX/More_Bibliographies
https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management
But I feel I should maybe have used biblatex, but I can't get it to work at the moment, so I would like to stick with natbib if possible.
I tried to get biblatex to work with this preamble, but it fails, because my file references.bib contains the characters @, %, <, >, ×, ç in some of the abstracts and author lists and the dates are malformed according to biblatex and it doesn't like entries such as M3 = {...}:
\usepackage[natbib,sorting=none,defernumbers=true,uniquelist=false,
backend=biber]{biblatex}
\addbibresource{references.bib}
\printbibliography

et. al. – tommy.carstensen Nov 21 '17 at 11:10