引用を 1 つの括弧内に表示するように修正するにはどうすればよいですか?

引用を 1 つの括弧内に表示するように修正するにはどうすればよいですか?

私は引用を次のようにリストアップしているときにこの問題に直面しています

\cite{citation42,citation23}  

しかし、LaTeX出力ファイルには次のように表示されます:

works [42], [23] ....

しかし、そうあるべきだ works [42,23] ....

これを修正するにはどうすればいいでしょうか? 次のパッケージを使用しています:

\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\bibliographystyle{unsrt}
\usepackage{cite}

パッケージを削除してみましたciteが、何も変わりません。

これを参照してください:1 つの括弧内に複数の引用がある

この場合、なぜ 1 つの括弧にグループ化されないのかわかりません。助けてください、ありがとうございます!

編集:

使用される他のパッケージを追加する

\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}

\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}

\bibliographystyle{unsrt}

編集2:

コピー&ペーストの例(動作を確認しましたが、問題は依然として残っています)

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}

\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
        T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}

\bibliographystyle{unsrt}
\begin{document}
    
    \title{Exploring the reason why my latex wont work for bibs}
    
    \maketitle
    
    
    
    \begin{abstract}
        Recently, this is the abstract i am testing 
    \end{abstract}
    
    
    \section{Introduction}
    This is how we do the introduction and thus how things are donee in works \cite{citation42,citation23}  like this.
    
    \section*{Acknowledgment}
    
    This project is funded by abcedergrfgsdfg
    
    
    
    
    \begin{thebibliography}{00}
        
        
        \bibitem{citation42}
        L.Writer
        \newblock Large scale benchmark 
        \newblock testestest
        
        
        \bibitem{citation23}
        L.Writer
        \newblock Large scale benchmark 
        \newblock testestest
        
    \end{thebibliography}
    
    
\end{document}

関連情報