IEEE 引用スタイルはレポートクラスには付属していません

IEEE 引用スタイルはレポートクラスには付属していません

2つ以上の引用が [1-3] のように表示されています。しかし、私は [1]-[3] と表示したいです。2つの連続した引用が [2, 4] のように表示されていますが、私は [2]、[4] と表示したいです。

私はTex Studioを使用しています。クラスを使用するとIEEEtran、引用は[1]-[3]になります。しかし、クラスを使用して書かれた論文でこのスタイルを取得しようとしていますreport。実行可能なMWEがここに提供されています。よろしくお願いします。

\documentclass{report}

\usepackage{url}
\usepackage{cite} % citation 
\renewcommand{\bibname}{REFERENCES} 

\let\oldthebibliography\thebibliography
\let\endoldthebibliography\endthebibliography
\renewenvironment{thebibliography}[1]{
    \begin{oldthebibliography}{#1}
        \setlength{\itemsep}{5pt} %Controls the spacing between two references.
        \setlength{\parskip}{0em}
    }
    {
    \end{oldthebibliography}
}


\begin{document}

More than 2 citations are coming like this \cite{Shafiei2017, Martins2017, JohnCrothers2017}. But I want them as [1]-[3]. 2 Consecutive citations are coming like this \cite{Wajda2017,Martins2017}, but I want them as [2], [4].


\bibliographystyle{IEEEtran}
\bibliography{Physics}
    
\end{document}

引用エントリは

Automatically generated by Mendeley Desktop 1.19.4
Any changes to this file will be lost if it is regenerated by Mendeley.

BibTeX export options can be customized via Options -> BibTeX in Mendeley Desktop

@article{Wajda2017,
author = {Wajda, Tadeusz},
doi = {10.5539/apr.v9n6p67},
issn = {1916-9639},
journal = {Applied Physics Research},
number = {6},
pages = {67},
title = {{Dilation of Time Dilation}},
volume = {9},
year = {2017}
}
@article{Shafiei2017,
author = {Shafiei, Ziaedin},
file = {:C$\backslash$:/Users/miais/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Shafiei - 2017 - Is Time Dilation a scientific theory.pdf:pdf},
number = {October},
title = {{Is Time Dilation a scientific theory ?}},
year = {2017}
}
@article{JohnCrothers2017,
author = {{John Crothers}, Stephen},
doi = {10.11648/j.ajmp.20170603.12},
issn = {2326-8867},
journal = {American Journal of Modern Physics},
number = {3},
pages = {43},
title = {{On the Logical Inconsistency of the Special Theory of Relativity}},
volume = {6},
year = {2017}
}
@article{Tartaglia2017,
author = {Tartaglia, Angelo and Lucchesi, David and Ruggiero, Matteo Luca and Valko, Pavol},
doi = {10.1109/MetroAeroSpace.2017.7999548},
isbn = {9781509042340},
journal = {4th IEEE International Workshop on Metrology for AeroSpace, MetroAeroSpace 2017 - Proceedings},
pages = {108--113},
title = {{LAGRANGE: An experiment for testing general relativity in the inner solar system}},
year = {2017}
}
@article{Martins2017,
author = {Martins, P. and Alves, L. Nero and Mendes, J. C.},
doi = {10.1109/ECCTD.2017.8093266},
isbn = {9781538639740},
journal = {2017 European Conference on Circuit Theory and Design, ECCTD 2017},
keywords = {Memristive systems,Memristors,Special Relativity (SR),State-space},
pages = {1--4},
title = {{On the dynamics of accelerated observers in Special Relativity}},
year = {2017}
}

関連情報