Some names should be abbreviated using not one but two characters, e. g. "Yuri Gagarin" => "Gagarin, Yu." But if I specify
author = "Gagarin, Yu."
or even
author = "Gagarin, {Yu.}"
bibtex nevertheless abbreviate it as "Gagarin, Y.", with only one character. How this can be corrected?
Compilable example, as requested in comments:
\documentclass{article}
\begin{filecontents}{bibliography.bib}
@book{pi,
author = {Gagarin, Yu.},
title = {Everything is flying to 3.14},
}
\end{filecontents}
\begin{document}
The rifle is a festivity\cite{pi}
\bibliographystyle{abbrv}
\bibliography{bibliography}
\end{document}
author = "Gagarin, {\relax Yu}ri"is the standard trick, which should work with BibTeX styles that abbreviate first names. If you usebiblatexyou need another approach. – moewe Jan 06 '19 at 07:59bibtex, butbiblatexsolution is still welcome – vvch Jan 06 '19 at 08:38biblatexwe have https://tex.stackexchange.com/q/422938/35864 – moewe Jan 06 '19 at 10:31