BibTeX, biblatex and biber ⇒ Natbib package: only expanding one author list
Natbib package: only expanding one author list
I have a question about citing multiple authors, but only printing the full author list for one of the papers. I have a situation where I want to cite two papers in the same set of parenthesis, but I only want to expand the set of authors in one of the papers. I am using the Natbib and Bibtex packages. The set up is as follows:
paper1: 4 authors; paper2: 3 authors (the standard in my field is to expand 3 author papers on the first citation)
\citep*[see][for review]{paper1,paper2}
The problem I am having is that this command expands both author lists into the long citation. I know I could use the option [longnamefirst] in my natbib package declaration, but I only want to expand 3 author papers on the first citation, not all papers.
Any suggestions?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Natbib package: only expanding one author list
(see \citealt{paper1}; \citealt*{paper2} for review)
If anyone has a better way to do this I would still appreciate hearing it.