LyX ⇒ Citation with multiple authors
Citation with multiple authors
I have two citations: The first is AuthorA,Author B "XXX" 2012 and the second is AuthorA,AuthorC "YYYY" 2012.
Now when I cite the first paper it shows up as (AuthorA and AuhorB, 2012a) and the second paper shows up as (AuthorA and AuhorC, 2012b) . I don't want the "a" to show up because it is not the same set of authors for the two articles. I am using natbib and elsarticle-harv. Can somebody please help me fix this?
Thanks,
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Citation with multiple authors
Code: Select all
@article{Smith2012a,
author = "Smith, John A. and Doe, Jane R.",
title = "Blah",
journal = "Stuff",
volume = 13,
pages = "14--16",
year = 2012
}
@article{Smith2012b,
author = "Smith, John A. and Jones, David R.",
title = "Blah",
journal = "Stuff",
volume = 13,
pages = "24--36",
year = 2012
}
Code: Select all
\documentclass{article}
\usepackage{natbib}
\begin{document}
Here is text~\citep{Smith2012a}, and here is another
citation~\citep{Smith2012b}.
\bibliographystyle{elsarticle-harv}
\bibliography{sid}
\end{document}
