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.
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
|
||||
|
The With
the entry in the bibliography would be
You're probably inputting With the
|
|||
|
|
|
If you're willing to switch to
|
||||
|
|

.bibfile. – egreg Apr 30 '12 at 17:00author="{\mbox{A.James Hancock}}",However I recommend biblatex with the stylenumeric. – Marco Daniel Apr 30 '12 at 17:22\mboxskullduggery. Since you're looking to reproduce the full middle name even though you're using theabbrvbibliography style, you might as well set the author field toname = {James Hancock, Andrew}(or whatever elseAshould expand to). Basically, you'd be tricking BibTeX into treating "James Hancock" as the surname and "Andrew" as the first name; the "first name" will get abbreviated toA.by theabbrvstyle file. – Mico Apr 30 '12 at 17:47