1

My problem is simple. In my document, in order to produce references, I use natbib. When I have the same author I prefer to have hers/his name to appear once (in the beginning) and then instead of his full name I want to have a 3-em baseline.

Is this possible to happen?

Here is a simple code:

\usepackage{ucs}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage[left=1.00in, right=1.00in, top=1.00in, bottom=1.00in]{geometry}
\usepackage[sectionbib, sort]{natbib}

\author{My name}
\title{Suppressing same author's name in multiple citations}

\begin{document}
\maketitle

As it is mentioned in \cite{Card2005} and \cite{Card2012} ... 


\bibliographystyle{chicagoa}
\bibliography{biblio}
\end{document}

where the bibliography file (biblio.bib) contains:

@ARTICLE{Card2005,
  author = {Card, David},
  title = {{Is the New Immigration Really so Bad?}},
  journal = {Economic Journal},
  year = {2005},
  volume = {115},
  pages = {F300--F323},
  number = {507},
  month = {November},
  timestamp = {2013.06.19}
}

@ARTICLE{Card2012,
  author = {Card, David},
  title = {{Comment: The Elusive Search for Negative Wage Impacts of Immigration}},
  journal = {Journal of the European Economic Association},
  year = {2012},
  volume = {10},
  pages = {211--215},
  number = {1},
  timestamp = {2013.06.25}
}
Pantelis Kazakis
  • 1,346
  • 1
  • 12
  • 29

1 Answers1

2

As @jon has pointed out in the comments above chicagoa is quite an old implementation of the Chicago Manual of Style guidelines way back from 1992.

For biblatex there is biblatex-chicago, it implements the 16th edition of the CMS and is still actively maintained.

biblatex-chicago replaces recurring author names by a dash.

A short example of a file using biblatex-chicago would be

\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[authordate]{biblatex-chicago}

\addbibresource{biblatex-examples.bib}

\begin{document}
  \cite{cicero, wilde, baez/online, baez/article}
  \printbibliography
\end{document}

Where biblatex-examples.bib is a file containing the bibliography. As a matter of fact that particular file is part of the standard biblatex installation. Normally you would put yourbibfile.bib right in the same directory as the main .tex file.

For current versions of biblatex, running Biber instead of BibTeX is recommended. So you would compile the above example via

pdflatex test
biber test
pdflatex test
pdflatex test

The output should then look like this

enter image description here

Have a look at

as well

moewe
  • 175,683