I am using BibLaTeX to organize my references. I use it in the following way:
\usepackage[backend=bibtex8,style=numeric,doi=false,maxbibnames=99,sorting=none]{biblatex}
However, when I cite several authors, eg.
\cite{author1,author2,author3}
the results is: [10, 11, 12].
How can I remove the spaces between the numbers? Also, how could I set it to [10-12] instead of [10, 11, 12]?
biberas the backend, notbibtex8. – Alan Munn Aug 13 '20 at 14:38\renewcommand*{\multicitedelim}{\addcomma}but I have my doubts that this makes your citations easier to read. – moewe Aug 13 '20 at 15:34