Variable: reftex-sort-bibtex-matches
reftex-sort-bibtex-matches is a customizable variable defined in
reftex-vars.el.gz.
Value
reverse-year
Documentation
Sorting of the entries found in BibTeX databases by reftex-citation.
Possible values:
nil Do not sort entries.
author Sort entries by author name.
year Sort entries by increasing year.
reverse-year Sort entries by decreasing year.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-sort-bibtex-matches 'reverse-year
"Sorting of the entries found in BibTeX databases by `reftex-citation'.
Possible values:
nil Do not sort entries.
`author' Sort entries by author name.
`year' Sort entries by increasing year.
`reverse-year' Sort entries by decreasing year."
:group 'reftex-citation-support
:type '(choice (const :tag "not" nil)
(const :tag "by author" author)
(const :tag "by year" year)
(const :tag "by year, reversed" reverse-year)))