]> git.eshelyaron.com Git - emacs.git/commitdiff
Add Conference to the list of valid bibtex entry types
authorLixin Chin <lixinchin@gmail.com>
Fri, 24 Feb 2017 00:04:27 +0000 (19:04 -0500)
committerGlenn Morris <rgm@gnu.org>
Fri, 24 Feb 2017 00:04:27 +0000 (19:04 -0500)
* lisp/textmodes/bibtex.el (bibtex-BibTeX-entry-alist):
Add Conference as a duplicate of InProceedings.  (Bug#25143)

Copyright-paperwork-exempt: yes

lisp/textmodes/bibtex.el

index 6cbdc1efd85254a0e4564549007e55c868ba541b..2128e50797df9b64695571e7e72bebaa1a5af6ab 100644 (file)
@@ -317,6 +317,20 @@ If parsing fails, try to set this variable to nil."
       ("organization" "Sponsoring organization of the conference")
       ("publisher" "Publishing company, its location")
       ("note")))
+    ("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")))
     ("InCollection" "Article in a Collection"
      (("author")
       ("title" "Title of the article in book (BibTeX converts it to lowercase)")
@@ -444,7 +458,7 @@ which is called to determine the initial content of the field.
 ALTERNATIVE if non-nil is an integer that numbers sets of
 alternatives, starting from zero."
   :group 'BibTeX
-  :version "24.1"
+  :version "26.1"                       ; add Conference
   :type 'bibtex-entry-alist)
 (put 'bibtex-BibTeX-entry-alist 'risky-local-variable t)