Latex: \bibliographystyle{abbrv} 根据外观排序引用

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

我正在使用 Latex 的 \bibliographystyle{abbrv} 命令作为参考。但是引用的顺序不是它们在文档中出现的顺序。无论如何,我可以使用缩写样式按照它们在我的文档中出现的顺序获得引用吗?

谢谢!

sorting=none 选项禁用排序:

\usepackage[sorting=none]{biblatex}

来自 biblatex 手册(第 3.1.2.1 节一般):

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.