Using natbib/Latex/Bibtex, in the references section I get references with full first names like:

Vladimir Iosifovich Levenshtein. Binary codes capable of correcting deletions, insertions, and reversals. Technical Report 8, 1966.

I would like automatically abbreviated first names like:

V. I. Levenshtein. Binary codes capable of correcting deletions, insertions, and reversals. Technical Report 8, 1966.

If you have an idea how to do this I will be glad to hear.

Thanks

link|improve this question

71% accept rate
feedback

1 Answer

Use a BibTeX style that does this. Alternatively, create your own style by modifying an existing one. You will have to change the function format.names, so that a line similar to this:

s nameptr "{f.~}{vv~}{ll}{, jj}" format.name$ 't :=

has f. as shown. The full first name would be shown if it is ff.

link|improve this answer
I use the \bibliographystyle{plainnat}, where should I edit the function (in which file?). Thanks! – TTT Jul 14 '11 at 21:02
2  
@TTT: Copy the file plainnat.bst into your working directory under a different name (e.g. my-plainnat.bst). Look for the FUNCTION {format.names}. About the seventh line of that function is the line shown above. Modify it to f. instead of ff. Then, use \bibliographystyle{my-plainnat} in your LaTeX file. – Svante Jul 15 '11 at 6:43
Thanks, this worked! Additional step is that you need to update your index. Check out link and scroll down to "4. Update your index" for instructions. – TTT Aug 25 '11 at 19:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.