[Tex/LaTex] Bibtex author name – unusual use case

bibtex

I need to cite a paper whose author apparently wishes to be known as "A.James Hancock" (I changed the actual name). How do I get the abbrv style to produce that? I keep getting A.Hancock.

Best Answer

If you're willing to switch to biblatex, here's how to disable its firstinits option for a single entry. (Note that style=numeric,firstinits=true is the biblatex equivalent to abbrv.bst.)

\documentclass{article}

\usepackage[style=numeric,firstinits=true]{biblatex}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@misc{Han12,
  execute = {\togglefalse{blx@firstinits}},
  author = {Hancock, A. James},
  year = {2012},
  title = {An unusual use case},
}
@book{Lam85,
  author = {Lamport, Leslie},
  year = {1985},
  title = {\LaTeX: A document preparation system},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\nocite{*}

\begin{document}

\printbibliography

\end{document}

enter image description here