¿Cómo soluciono que mis citas aparezcan en un solo paréntesis?

¿Cómo soluciono que mis citas aparezcan en un solo paréntesis?

Me enfrento a este problema en el que enumero mis citas como

\cite{citation42,citation23}  

pero todavía aparece en mi archivo de salida de látex como:

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

pero debería ser works [42,23] ....

¿Cómo puedo solucionar esto? Estoy usando los siguientes paquetes:

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

Intenté eliminar el citepaquete y nada cambia.

Referido a esto:Varias citas en un solo paréntesis

No estoy seguro de por qué en este caso se niega a agruparse en un solo paréntesis. Por favor ayuda, gracias!

editar:

Agregar los otros paquetes que se utilizan también

\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}

Edición 2:

Ejemplo para copiar y pegar (funciona, lo comprobé, solo que el problema persiste)

\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}

información relacionada