[Tex/LaTex] IEEE LaTeX style: grouping references

bibliographiesieee-style

I'm writing a paper in LaTeX with the IEEE style and when citing multiple references with \cite{ref_A,ref_B,ref_C}, it produces [1],[2],[3]. How can I change that to [1,2,3]?

Best Answer

Assuming that you are using the Transactions style with

\documentclass[final]{IEEEtran} %or draft etc.

Using the following line in the preamble

\usepackage[noadjust]{cite}

and also using the house style of IEEEtran with

\bibliographystyle{IEEEtran}

passed the IEEE check more than once.

Related Question