我尝试使用\biboptions{numbers,sort&compress}
压缩参考文献的命令。我使用的natbib
包本身不会出现任何错误,但当我激活biboptions
命令时会出现错误。此命令在Elsevier 或 Springer 的模板biboptions
中使用时不会出现任何错误,并且可以很好地压缩参考文献。但为什么只有在使用默认文章模板时才会出现错误?elsarticle
svjour3
示例代码:
\documentclass[a4paper,fleqn,12pt]{article}
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{graphics}
\usepackage{natbib}
\biboptions{numbers,sort&compress}
\begin{document}
\title{Type Title Here}
\author{Author's name}
\date{}
\maketitle
\begin{abstract}
Type abstract here
\end{abstract}
\section{Introduction}
\cite{bell3,bell6,bell7,bell8,bell9,bell10,bell11,bell12,bell13}
\bibliography{My.Bibtex.Library}
\bibliographystyle{unsrt}
\end{document}