[Tex/LaTex] Get multiple citations; [1-5] instead of [1,2,3,4,5]

biblatex

I'm using the package;

\documentclass[a4paper, twoside, 11pt]{report}
\usepackage[sorting = none, backend = bibtex]{biblatex}
\addbibresource{Refs.bib}

to get my references. But I want to refer to multiple references so it looks like [1-5], but I get only [1,2,3,4,5].

What must I do to get the citations to look like [1-5] instead of [1,2,3,4,5]?

Best Answer

It looks like you want the style numeric-comp

\documentclass[a4paper]{article}
\usepackage[sorting = none, backend = bibtex, style=numeric-comp]{biblatex}
\addbibresource{biblatex-examples.bib}

\begin{document}
We cite three sources \cite{aristotle:anima, aristotle:physics, aristotle:poetics}.
We then cite one other source \cite{worman}. 
Finally we cite all our sources, but in a different order 
\cite{worman, aristotle:anima,aristotle:poetics, aristotle:physics}

\printbibliography

\end{document}

enter image description here