按 Latex natbib 中名字的升序显示参考文献列表

按 Latex natbib 中名字的升序显示参考文献列表

我正在努力获取按名字升序排列的论文参考文献列表。通过以下代码,我可以按姓氏顺序获取参考文献。

\documentclass[a4paper, 12pt, oneside]{Thesis}
\usepackage[square, numbers, comma, sort&compress]{natbib}
\begin{document}
\input{Chapters/Chapter1} % Introduction
\chapter{Flow over permeable sheet} 
The flow due to stretching of a flat surface was first investigated by Aziz \cite{Aziz}. 
Brady and Aroesty \cite{Aroesty} analyzed the flow inside a stretching channel or tube and the flow outside the stretching tube was examined by Hassanien \cite{Hassanien}.
\input{Chapters/Chapter3} % Second Paper
\bibliographystyle{plainnat} 
\bibliography{Bibliography}
\end{document}

使用 bib 文件:

@article{Aroesty, 
  author = "J. Aroesty and J. F. Gross",
  title = "flow in small blood vessels",
  volume = "9",
  year='2000'} 
@article{AzizA,
  author = "Aziz Aboud, 
  title=Homotopy analysis method",
  volume = "3",
  year="2008"}

获取输出为

[1] Hassanien I A, "Micropolar Boundary-Layer Flow", vol 21, 2012
 [2] Aziz Aboud, "Homotopy analysis method", vol 3, 2008
 [3] M. Abramowitz and I. A. Stegun, "characteristics of a continuous stretching surface", vol 45, pp. 215-218,1995
 [4] J. Aroesty and J. F. Gross, "flow in small blood vessels", vol 1, 2000

我希望这些参考资料按名字排序,如下所示:

[1] Aziz Aboud, "Homotopy analysis method", vol 3, 2008
[2] Hassanien I A, "Micropolar Boundary-Layer Flow", vol 21, 2012
[3] J. Aroesty and J. F. Gross, "flow in small blood vessels", vol 1, 2000
[4] M. Abramowitz and I. A. Stegun, "characteristics of a continuous stretching surface", vol 45, pp. 215-218,1995

相关内容