Latex: \bibliographystyle{abbrv} order citations based on appearance [closed]

懵懂的女人 提交于 2019-12-22 10:56:38

问题


I am using Latex's \bibliographystyle{abbrv} command for references. But the order of citations is not in the sequence they appear in the document. Is there anyway, I can get citations in the order they appear in my document using abbrv style?

Thanks!


回答1:


The sorting=none option disables sorting:

\usepackage[sorting=none]{biblatex}

From the biblatex manual (Section 3.1.2.1 General):

The sorting order of the bibliography. Unless stated otherwise, the entries are sorted in ascending order. The following choices are available by default:

  • nty Sort by name, title, year.
  • nyt Sort by name, year, title.
  • nyvt Sort by name, year, volume, title.
  • anyt Sort by alphabetic label, name, year, title.
  • anyvt Sort by alphabetic label, name, year, volume, title.
  • ynt Sort by year, name, title.
  • ydnt Sort by year (descending), name, title.
  • none Do not sort at all. All entries are processed in citation order.
  • debug Sort by entry key. This is intended for debugging only.


来源:https://stackoverflow.com/questions/31972080/latex-bibliographystyleabbrv-order-citations-based-on-appearance

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!