BibTeX: How to reduce long author lists to "Firstauthor et al."?

The natbib citation management package manages the creation and appearance of citation call-outs. It does not, per se, determine how (or even whether) lists of numerous authors should be truncated, either in a citation call-out or in the formatted bibliographic reference. Such truncation issues are determined by the bibliography style file (.bst), which is loaded via the command \bibliographystyle{<somestyle>}.

If you can't find an existing .bst file that meets your formatting needs, you can always create one from scratch by running LaTeX on makebst.tex, which is part of the custom-bib package. Running the makebst utility launches an interactive series of multiple-choice questions, with all available answer options nicely explained. Several questions will be related to truncation matters. The output will be the .bst file you want.


Additional write-up, upon receiving information that @fuenfundachtzig uses the unsrt bibliography style. (Since the unsrt bibliography style can create numeric-style citation call-outs only, the answer below addresses how to truncate the list of authors in the formatted bibliography, not in the citation call-outs.)

I suggest you proceed as follows:

  • Find the file unsrt.bst in your TeX distribution. Make a copy of this file and name the copy, say, unsrt85.bst. Do not edit a system file directly.

  • Open the file unsrt85.bst in your favorite text editor.

  • Update September 2020: It has come to my attention that the editing instructions I provided back in August 2011 no longer work. I have no idea when exactly BibTeX's processing of the bst file changed. The following code is valid for an up-to-date TeXLive2020 TeX distribution.

    Find the function format.names (it starts on l. 185 in my copy of the file) and locate the following line inside this function, about 7 lines down from the top:

           nameptr #1 >
    
  • Assuming that you want to print out just the first three authors (followed by "et al.") whenever the entry has more than four (i.e., "at least five") authors, you should replace the next 3 lines in the BibTeX function, viz.,

            { namesleft #1 >
                { ", " * t * }
                { numnames #2 >
    

    with the following 17 lines:

            {
              nameptr #3
              #1 + =
              numnames #4
              > and
                { "others" 't :=
                  #1 'namesleft := }
                'skip$
              if$
              namesleft #1 >
                { ", " * t * }
                {
                  s nameptr "{ll}" format.name$ duplicate$ "others" =
                    { 't := }
                    { pop$ }
                  if$
                  numnames #2 >
    

    Put differently, this setup tells BibTeX to include all authors' names if the entry has at most four authors, and to include just the first three names, followed by "et al", if the entry has more than four authors.

  • Save the file unsrt85.bst either in the directory that contains the main tex file or in a directory that's searched by BibTeX. If you choose the second option, be sure to also update TeX's filename database as needed.

  • In the main tex file, you need to change \bibliographystyle{unsrt} to \bibliographystyle{unsrt85} and perform a full recompile cycle (LaTeX, BibTeX, and LaTeX twice more).


Addendum May 2019: For the ACM-Reference-Format bibliography style, there needs to be one slight modification to the fix proposed above:

  nameptr #1 >
     {
      nameptr #3
      #1 + =
      numnames #5
      > and
        { "\bibinfo{person}{others}" 't :=
          #1 'namesleft := }
        'skip$
      if$
      namesleft #1 >

i.e., the string "others" should be replaced with "\bibinfo{person}{others}". (Verified with version 2.1 of ACM-Reference-Format.bst.)


If you are using BibTeX, place and others after the main authors and the compiled file should show et. al, e.g.:

Author="H. Morgan and others"

There should be no need to edit a .bib file manually to have the desired number of authors before 'et al.' in either the citations or the bibliography/reference list.

The number of authors listed in citations and the bibliography is managed by the bibliography style. For example, using the APA style (which requires up to the first six authors before 'et al.' for book references in the bibliography):

sample.tex file:

\documentclass{article}
\usepackage{apacite}
\bibliographystyle{apacite}

\begin{document}
Found in \cite{abk}.

\bibliography{sample}
\end{document}

sample.bib file:

@book{abk,
  author    = "A. Man and A. Woman and Second Man and Third Man and Fourth Man and Second Woman and Third Woman and Fourth Woman and Fifth Man",
  title     = "This book",
  publisher = "Men \& Women",
  year      = 2025,
}

output (not formatted, just the text from the .pdf)

Found in (Man et al., 2025).

References

Man, A., Woman, A., Man, S., Man, T., Man, F., Woman, S., et al. (2025). This book. Men & Women.

You would need to identify an appropriate style, usually provided by the publisher if they accept contributions produced using (Any)TeX or from the pre-configured styles available, or you could produce your own if the requirement is sufficiently important. If you want suggestions for possible styles it would help if you said which style you are currently using and the changes you want to achieve.

To give an example of a different style using the same sample.bib file but with the bibliography style changed:

\documentclass{article}
\bibliographystyle{alpha}

\begin{document}
Found in \cite{abk}.

\bibliography{sample}
\end{document}

This style produces (again, just the text from the .pdf):

Found in [MWM+ 25].

References

[MWM+ 25] A. Man, A. Woman, Second Man, Third Man, Fourth Man, Second Woman, Third Woman, Fourth Woman, and Fifth Man. This book. Men & Women, 2025.

This does not truncate the number of authors in the bibliography at all (unlike the first example using the APA style).