Hi,
I have used \bibliographystyle{plain} but when I cite some references in the doc, they don't appear with numbering order. For example, I get [9,2,28,13,11] instead of [2,9,11,13,28]. Is there any way that latex would cite the references with numbering order?
cheers,
General ⇒ numbering order with \bibliographystyle
NEW: TikZ book now 40% off at Amazon.com for a short time.

numbering order with \bibliographystyle
Hi,
you can load the natbib package with the sort option; i.e., add this in the preamble of your document:
you can load the natbib package with the sort option; i.e., add this in the preamble of your document:
Code: Select all
\usepackage[sort]{natbib}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: numbering order with \bibliographystyle
works like a charm! thanks!