[Tex/LaTex] Cite a reference with the initials of the authors

citingnatbib

How do I cite references such that instead of appearing a number in the citation, the initials of the authors appears using natbib? For example, if I have this reference

"[JRP] Jordan, M., Rodman, D., and Pippen, S. The best basketball team ever. 1999."

When I cite this inside the document, I want something like this:

"In a last minute play something happened [JRP]."

I've tried several options in natbib without success. This webpage have a nice description of natbib options and commands. However, I cannot find the proper way for doing this kind of citation.

Best Answer

You have to play with the bibliographystyle of your document. You can find a nice list of bibliography styles at

http://openwetware.org/wiki/Image:Bibstyles.pdf

The one you want really is close the alpha style, but without the year, and is called alphanum. Therefore, just add

\bibliographystyle{alphanum} 

close the end of your document (before the bibliography). In case the style is not installed on your system you will get an error when using bibtex on the document (something like "I couldn't open style file alphanum.bst"). In this case download the file, for example from

http://www.tex.ac.uk/tex-archive/biblio/bibtex/contrib/misc/alphanum.bst

and install in a place where bibtex can find it.

Related Question