Natbib 数字顺序

Natbib 数字顺序

我在使用 BibTeX 时遇到了一些问题。下面的代码按作者-年份顺序列出参考文献,但对于具有相同作者和年份顺序的参考文献,顺序是任意的。有解决办法吗?谢谢 :D

\documentclass{thesis}

\usepackage{indentfirst}
\usepackage{fancyhdr}
\usepackage{graphicx}
\raggedbottom
\usepackage[a4paper,top=4cm,bottom=4cm,left=3cm,right=3cm]{geometry}
\pagestyle{empty}

\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{textcomp}
\usepackage[utf8]{inputenc}
\usepackage{microtype}
\usepackage{enumitem}

\bibliographystyle{siam}
\usepackage[numbers]{natbib}
\usepackage{chapterbib}

\frenchspacing
\usepackage{setspace}
\onehalfspacing




\newcommand{\cit}[1]{``#1''}
\makeatletter
\renewcommand\@biblabel[1]{}
\makeatother


\begin{document}
\cleardoublepage 
\nocite{*}
\renewcommand\bibsection{\subsection*{UNdocs}}
\bibliography{un}
\bibliographystyle{siam}


\end{document}

Entry examples:
@Proceedings{unmik2,
title = {On the Authority of the Interim Administration in Kosovo},
year = {1999},
address = {Pristina},
organization = {UNMIK [United Nations Interim Administration Mission in Kosovo]},
note = {U.N. Doc. UNMIK/REG/1999/1},
}

@Proceedings{unmik3,
title = {On the Appointment and Removal from Office of Judges and Prosecutors},
year = {1999},
address = {Pristina},
organization = {UNMIK [United Nations Interim Administration Mission in Kosovo]},
note = {U.N. Doc. UNMIK/REG/1999/7},
}

这是 .bib 文件顺序中的两个条目。当我编译时,它们以随机顺序出现,而我希望按输入顺序出现。

相关内容