I am entering citation information in a table and need an article to use "et al." within the table. However, the journal's style requires longnamesfirst. Is there any way to force et al. for specific cases? I tried \citeauthor*{} as suggested some places (but that's not a natbib command). I also tried \AtNextCitekey{\defcounter{maxnames}{1}} as suggested here
I cannot change the style, or remove the longnamesfirst. I also cannot just manually type in as that wrecks the hyperlinks and automated bibliography.
MWE (although not the correct style file, but it shows the problem)
\documentclass{article}
\usepackage[longnamesfirst]{natbib}
\title{random test document}
\begin{document}
Document with some words and a citation to an article with a lot of authors: \citeauthor{thearticle}.
\maketitle
\bibliography{name}
\bibliographystyle{plainnat}
\end{document}
