I'm using biblatex for bibliography management, and I'm required to use numbered citation style where references are sorted after citation order. Thus, I've loaded the package like this:
\usepackage[sorting=none]{biblatex}
Now when I cite multiple sources in the same citation
Some statement \cite{source1,source2,source3,source4}.
I get the following result:
Some statement [1, 2, 3, 4].
but I'd rather have the following:
Some statement [1-4].
Ideally, it should let two citations remain as [1, 2], while three or more should become [1-3] etc. I've looked in the documentation for options that define this behavior, but apparently I don't know what I'm looking for. (Most of my internet searches drown in results on how to abbreviate page ranges...)
sortcites=trueoption or thenumeric-compcitation style (see section 3.3.1 of the manual) – Guido Feb 11 '14 at 11:04style=numeric-comp,sorting=nonegave me what I wanted. If you put it in an answer, I can give you rep for it - otherwise I'll probably put the answer up here myself for completeness. – Tomas Aschan Feb 11 '14 at 11:24