summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLixin Chin <lixinchin@gmail.com>2017-02-23 19:04:27 -0500
committerGlenn Morris <rgm@gnu.org>2017-02-23 19:04:27 -0500
commitba6c382404a9fe598be72e64beb21a90161ebb91 (patch)
tree259b79e3954f4ba23315e70f6361ad13b7b9dbc0
parent581c4d1f1c2a6415ded31e03540b93b195056b96 (diff)
downloademacs-ba6c382404a9fe598be72e64beb21a90161ebb91.tar.gz
Add Conference to the list of valid bibtex entry types
* lisp/textmodes/bibtex.el (bibtex-BibTeX-entry-alist): Add Conference as a duplicate of InProceedings. (Bug#25143) Copyright-paperwork-exempt: yes
-rw-r--r--lisp/textmodes/bibtex.el16
1 files changed, 15 insertions, 1 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index 6cbdc1efd85..2128e50797d 100644
--- a/lisp/textmodes/bibtex.el
+++ b/lisp/textmodes/bibtex.el
@@ -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)