My references, in an article I'm working on, start from [13] and not [1]. How do I get it to start from [1]?
In my bibliography, at the bottom, it is in order but in the actual article itself it does not start in order from [1] onward.
My references, in an article I'm working on, start from [13] and not [1]. How do I get it to start from [1]?
In my bibliography, at the bottom, it is in order but in the actual article itself it does not start in order from [1] onward.
\bibliographystyle{unsrt}for this if you are using BibTeX (you need to remove the\bibliographystylecommand that is in your document now and replace it with this one).unsrt(for 'unsorted') sorts references according to the order they appear in the document. If you use BibLaTeX instead of BibTeX then it works differently, for that see for example https://tex.stackexchange.com/questions/51434/biblatex-citation-order. – Marijn May 16 '19 at 11:17