Natbib 中的 Biboptions 出现文章类别错误

Natbib 中的 Biboptions 出现文章类别错误

我尝试使用\biboptions{numbers,sort&compress}压缩参考文献的命令。我使用的natbib包本身不会出现任何错误,但当我激活biboptions命令时会出现错误。此命令在Elsevier 或 Springer 的模板biboptions中使用时不会出现任何错误,并且可以很好地压缩参考文献。但为什么只有在使用默认文章模板时才会出现错误?elsarticlesvjour3

示例代码:

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

相关内容