I want to reference
[Was97] L. Washington, Introduction to cyclotomic fields, Springer, New York, 1997.
in my text. However, using Bibdesk, it autogenerates Was97 for me. How may I change that to [W97] or in fact, to anything else?
I want to reference
[Was97] L. Washington, Introduction to cyclotomic fields, Springer, New York, 1997.
in my text. However, using Bibdesk, it autogenerates Was97 for me. How may I change that to [W97] or in fact, to anything else?
The code you provided is your bib-File, but I assume, that you are using bibtex as told.
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{washington,
Address = {New York},
Author = {Washington, L.},
Publisher = {Springer},
Title = {Introduction to cyclotomic fields},
Year = {1997},
}
\end{filecontents*}
\begin{document}
\nocite{*}
\bibliography{\jobname}
\bibliographystyle{alpha} % change this style
\end{document}
You might want to have a look e.g. here to see examples of the different styles.
If you want your references like [W97] this link might be worth looking at.
If you really want to shorten the citation callouts, you should switch from your current bibliography style -- likely alpha -- to a numeric citation style.
To make the switch, you have to locate the \bibliographystyle instruction in your tex file. I'm guessing it currently says
\bibliographystyle{alpha}
Change this to either \bibliographystyle{plainnat} or \bibliographystyle{unsrtnat}, and rerun LaTeX, BibTeX, and LaTeX twice more to fully propagate the changes. You will then get citation callouts, e.g, [1], [2], etc.
Bibdeskjust provides you the bib-file. You have to change the style of your bibliography (alphamight be what you need). Do you usebiberorbibtex? – Hackbard_C Aug 07 '14 at 10:04@book{washington, Address = {New York}, Author = {Washington, L.}, Date-Modified = {2014-08-07 10:39:32 +0000}, Publisher = {Springer}, Title = {Introduction to cyclotomic fields}, Year = {1997}} Why not write an answer so that I can accept it?
– Haikal Yeo Aug 07 '14 at 10:42