BibTeX, biblatex and biberMultiple Citations of the same first Author

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
george_S1
Posts: 1
Joined: Tue Jul 30, 2013 8:52 pm

Multiple Citations of the same first Author

Post by george_S1 »

Dear experts,

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}
Sample bibliography database file.

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}
}
A similar problem occurs if you have two authors who published in the same year with the same family name but different forenames. The package puts the initials in the front and this just doesn't look good. Small letters behind the publication year should do it, so I thought.

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
Last edited by localghost on Tue Jul 30, 2013 10:57 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Marta
Posts: 1
Joined: Fri Jan 17, 2014 12:36 pm

Re: Multiple Citations of the same first Author

Post by Marta »

Hi George,
I have exactly the same problem. Did you find some solution? Anybody has some clue. Thanks!!
turing_machine
Posts: 1
Joined: Fri Jan 31, 2014 5:38 am

Re: Multiple Citations of the same first Author

Post by turing_machine »

I also have the same problem. Would really appreciate a useful answer!
mo80
Posts: 1
Joined: Thu Apr 03, 2014 7:15 pm

Re: Multiple Citations of the same first Author

Post by mo80 »

There must be a solution to that problem using apacite! Anyone?
Post Reply