General ⇒ numbering order with \bibliographystyle
numbering order with \bibliographystyle
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,
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
numbering order with \bibliographystyle
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}