BibTeX, biblatex and biberWrong Order in multiple References with one Citation

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
poobear
Posts: 3
Joined: Sat Feb 12, 2011 12:08 am

Wrong Order in multiple References with one Citation

Post by poobear »

Hi,

I'm a novice LaTeX user and uses latest TeXShop. I'm ending my documents with the following code to get references in the order they are referenced.

Code: Select all

\bibliographystyle{unsrt}
\bibliography{nameofmyfile}
However, I have a problem when I have multiple references in one citation, i.e.

Code: Select all

\cite{citation1,citation7}
The thing is that their appear in the order they are referenced inside that bracket, regardless the rest of the document. So with "\cite{citation7,citation1}" I end up with a bracket that goes [7,1], even though 1 is both lower than 7 and appeared way before 7 did earlier in the document.

Is this normal behavior?

How can I choose so that when having multiple references in one citation, it starts with the lower number and ends with the higher number?

Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Vickers
Posts: 2
Joined: Thu Jan 26, 2012 7:28 pm

Wrong Order in multiple References with one Citation

Post by Vickers »

Try to include (if you don't have it of course):

Code: Select all

\usepackage{cite}
It helped for me!


Vic
Last edited by localghost on Wed Feb 15, 2012 5:57 pm, edited 2 times in total.
Post Reply