I'm new (actively) in the forum even though I read your tips since years. This time, however, I couldn't find a solution. I wrote my thesis in LaTeX and received the corrections back from the external examiners to change some of my citations, which are automatically done for me with the apacite package.
Problem: I have a first author (Christie) who wrote two paper in the same year (2006). Second, third etc. authors are different in both papers. Now, when I cite them I would like to see something like Christie et al. (2006a) and Christie et al. (2006b). Th package, however, cites them different because the second+ authors are not the same. Is there a way to to change that somehow?
Minimum example.
Code: Select all
\documentclass[english]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\usepackage{apacite}
\begin{document}
Example 1:
\shortciteA{Christie2006a} found as well as \shortciteA{Christie2006b}
that.....
Example 2:
This was found by different authors \shortcite<e.g.>{Christie2006a,Christie2006b}
\bibliographystyle{apacite}
\bibliography{Library}
\end{document}
Code: Select all
@article{Christie2006b,
author = {Christie, F. and Gottlob, I. and Schmidt, K.},
journal = {{Petrology}},
pages = {23--40},
title = {{Title 2}},
volume = {9},
year = {2006}
}
@article{Christie2006a,
author = {Christie, F. and Smith, K. and White, S. and Johnston, P.},
journal = {{Geology}},
pages = {1--5},
title = {{Title 1}},
year = {2006}
}
Any help would be greatly appreciated! Or also if you can redirect me to the right post if somebody has posted that.
Best wishes,
George