내 인용이 단일 괄호 안에 표시되도록 수정하려면 어떻게 해야 하나요?

내 인용이 단일 괄호 안에 표시되도록 수정하려면 어떻게 해야 하나요?

내 인용을 다음과 같이 나열하는 문제에 직면했습니다.

\cite{citation42,citation23}  

하지만 내 라텍스 출력 파일에는 여전히 다음과 같이 나타납니다.

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

하지만 그래야 해 works [42,23] ....

이 문제를 어떻게 해결합니까? 다음 패키지를 사용하고 있습니다.

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

패키지 를 제거하려고 시도했지만 cite아무것도 변경되지 않았습니다.

이에 대해 언급한 내용은 다음과 같습니다.단일 괄호 안의 여러 인용

이 경우 왜 단일 괄호로 그룹화를 거부하는지 잘 모르겠습니다. 도와주세요, 감사합니다!

편집하다:

사용되는 다른 패키지 추가

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

관련 정보