aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2021-12-11 04:16:00 +0100
committerLars Ingebrigtsen2021-12-11 04:16:06 +0100
commitaf1c5ec0fcd3f25234cfe2986c873ff2e5ed63a0 (patch)
tree5d35dcc94712e68fb769e0620c610cae02feb7d8
parentc9cb59bc4f68d6050451bc0a619fd3eb6a6ed554 (diff)
downloademacs-af1c5ec0fcd3f25234cfe2986c873ff2e5ed63a0.tar.gz
emacs-af1c5ec0fcd3f25234cfe2986c873ff2e5ed63a0.zip
Fix bibtex-biblatex-entry-alist sorting when using latex
* lisp/textmodes/bibtex.el (bibtex-biblatex-entry-alist): Sort PhdThesis and TechReport correctly when using the latex variant (bug#52354).
-rw-r--r--lisp/textmodes/bibtex.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index c06e8bfa1bb..2dd4e8e7af0 100644
--- a/lisp/textmodes/bibtex.el
+++ b/lisp/textmodes/bibtex.el
@@ -839,6 +839,24 @@ for a new entry."
839 ("eprint") ("eprintclass" nil nil 4) ("primaryclass" nil nil -4) 839 ("eprint") ("eprintclass" nil nil 4) ("primaryclass" nil nil -4)
840 ("eprinttype" nil nil 5) ("archiveprefix" nil nil -5) 840 ("eprinttype" nil nil 5) ("archiveprefix" nil nil -5)
841 ("url") ("urldate"))) 841 ("url") ("urldate")))
842 ("PhdThesis" "PhD Thesis"
843 (("author")
844 ("title" "Title of the PhD thesis")
845 ("school" "School where the PhD thesis was written")
846 ("year"))
847 nil
848 (("type" "Type of the PhD thesis")
849 ("address" "Address of the school (if not part of field \"school\") or country")
850 ("month") ("note")))
851 ("TechReport" "Technical Report"
852 (("author")
853 ("title" "Title of the technical report (BibTeX converts it to lowercase)")
854 ("institution" "Sponsoring institution of the report")
855 ("year"))
856 nil
857 (("type" "Type of the report (if other than \"technical report\")")
858 ("number" "Number of the technical report")
859 ("address") ("month") ("note")))
842 ("Unpublished" "Unpublished" 860 ("Unpublished" "Unpublished"
843 (("author") ("title") ("date" nil nil 1) ("year" nil nil -1)) 861 (("author") ("title") ("date" nil nil 1) ("year" nil nil -1))
844 nil 862 nil