emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 8c3d655fe7: Add biblatex alias entry types for compability with b


From: Lars Ingebrigtsen
Subject: master 8c3d655fe7: Add biblatex alias entry types for compability with bibtex
Date: Tue, 12 Apr 2022 06:22:04 -0400 (EDT)

branch: master
commit 8c3d655fe76e1148adcaac0b2fe9550621ba7e54
Author: Olaf Trygve Berglihn <olafb@pvv.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Add biblatex alias entry types for compability with bibtex
    
    * lisp/textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add
    biblatex alias entry types for compability with bibtex (bug#54877).
    
    Copyright-paperwork-exempt: yes
---
 lisp/textmodes/bibtex.el | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index ab6a907c52..d02eca506a 100644
--- a/lisp/textmodes/bibtex.el
+++ b/lisp/textmodes/bibtex.el
@@ -764,6 +764,20 @@ for a new entry."
       ("eprint") ("eprintclass" nil nil 4) ("primaryclass" nil nil -4)
       ("eprinttype" nil nil 5) ("archiveprefix" nil nil -5)
       ("url") ("urldate")))
+    ("Conference" "Article in Conference Proceedings" ; same as InProceedings
+     (("author")
+      ("title" "Title of the article in proceedings (BibTeX converts it to 
lowercase)"))
+     (("booktitle" "Name of the conference proceedings")
+      ("year"))
+     (("editor")
+      ("volume" "Volume of the conference proceedings in the series")
+      ("number" "Number of the conference proceedings in a small series 
(overwritten by volume)")
+      ("series" "Series in which the conference proceedings appeared")
+      ("pages" "Pages in the conference proceedings")
+      ("month") ("address")
+      ("organization" "Sponsoring organization of the conference")
+      ("publisher" "Publishing company, its location")
+      ("note")))
     ("Reference" "Single-Volume Work of Reference" ; same as @collection
      (("editor") ("title") ("date" nil nil 1) ("year" nil nil -1))
      nil
@@ -848,6 +862,15 @@ for a new entry."
      (("type" "Type of the PhD thesis")
       ("address" "Address of the school (if not part of field \"school\") or 
country")
       ("month") ("note")))
+    ("MastersThesis" "Master's Thesis"
+     (("author")
+      ("title" "Title of the master's thesis (BibTeX converts it to 
lowercase)")
+      ("school" "School where the master's thesis was written")
+      ("year"))
+     nil
+     (("type" "Type of the master's thesis (if other than \"Master's 
thesis\")")
+      ("address" "Address of the school (if not part of field \"school\") or 
country")
+      ("month") ("note")))
     ("TechReport" "Technical Report"
      (("author")
       ("title" "Title of the technical report (BibTeX converts it to 
lowercase)")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]