BibTeX can abbreviate first names, e.g. change Smith, John to J. Smith. In some languages, certain (not all) first names must be abbreviated with more than one letter (it's not optional as in the case of Ch. for Charles). How can I force BibTeX to do this for particular first names?
EDIT: I encounter this all the time, including for my own name which should be abbreviated Sz rather than S. I used to work around the problem by hand editing the reference list in the final version of the paper, but I'd prefer using BibTeX for everything if possible.
Requested example:
.tex file:
\documentclass{article}
\begin{document}
Text \cite{kovacs, smith}.
\bibliographystyle{abbrv}
\bibliography{references}
\end{document}
.bib file:
@Book{smith,
author = "Peter Smith",
title = "Title 1",
year = 1980,
publisher = "Addison-Wesley"
}
@Book{kovacs,
author = "Csaba Kov\'{a}cs",
title = "Title 2",
year = 1986,
publisher = "Addison-Wesley"
}
The output I get:
Text [1, 2].
References
[1] C. Kovács. Title 2. Addison-Wesley, 1986.
[2] P. Smith. Title 1. Addison-Wesley, 1980.
I need to tell bibtex that for Csaba Kovács I need to get Cs. Kovács in the output, and not C. Kovács, as this is incorrect. The document is in English, so this is not a babel-issue. This applies only to certain author names, and it's because in Hungarian C and Cs are considered to be distinct units of the alphabet.
