Elsevier 템플릿의 문제: 인용이 [1-5]로 그룹화되지 않고 [1,2,3,4,5]로 표시됩니다.

Elsevier 템플릿의 문제: 인용이 [1-5]로 그룹화되지 않고 [1,2,3,4,5]로 표시됩니다.

에서Elsevier의 템플릿, 질문 제목에 표시된 대로 문제가 있습니다. 에 대한 다른 관련 질문이 있지만 tex.stackexchange여기서는 유용하지 않습니다. 이 문제를 해결할 수 있는 방법을 알고 있나요?

템플릿 다운로드 링크:http://mirrors.ctan.org/macros/latex/contrib/elsarticle.zip

다음은 템플릿을 다루는 것입니다.elsarticle-template-num

\documentclass[preprint,12pt]{elsarticle}


\usepackage{amssymb}

\journal{Nuclear Physics B}

\begin{document}

\begin{frontmatter}
\title{}
\author{}
\address{}
\begin{abstract}    
\end{abstract}

\end{frontmatter}


\section{}
\label{}

%% If you have bibdatabase file and want bibtex to generate the
%% bibitems, please use
%%
%%  \bibliographystyle{elsarticle-num} 
%%  \bibliography{<your bibdatabase>}

\begin{thebibliography}{00}

%% \bibitem{label}
%% Text of bibliographic item

\bibitem{}

\end{thebibliography}
\end{document}
\endinput

답변1

이와 같은 것이 트릭을 수행해야합니다

\PassOptionsToPackage{sort&compress}{natbib}
\documentclass[preprint,12pt]{elsarticle}
\usepackage{amssymb}
\journal{Gnus of the World}
\begin{document}
\begin{frontmatter}
\title{Gnus and Gnats, IV.}
\author{John X. Doe}
\address{Nowhere U.}
\begin{abstract}
No need at this stage
\end{abstract}
\end{frontmatter}
\section{Gnus are everywhere}
\begin{filecontents*}{\jobname.bib}
@ARTICLE{Important,
  author       = "Doe, J.",
  title        = "Gnus and Gnats, {I}.",
  journal      = "Gnus of the world",
  year         = "2020",
  volume       = "2456",
  number       = "1",
  pages        = "123--2567",
}
@ARTICLE{Importantb,
  author       = "Doe, J.",
  title        = "Gnus and Gnats, {II}.",
  journal      = "Gnus of the world",
  year         = "2020",
  volume       = "2456",
  number       = "2",
  pages        = "34562--56210",
}
@ARTICLE{Importantbb,
  author       = "Doe, J.",
  title        = "Gnus and Gnats, {III}.",
  journal      = "Gnus of the world",
  year         = "1998",
  volume       = "2",
  number       = "1",
  pages        = "1--3",
}
\end{filecontents*}
\cite{Important,Importantb,Importantbb}
\bibliographystyle{elsarticle-num-names}
\bibliography{\jobname}
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보