aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLixin Chin2017-02-23 19:04:27 -0500
committerGlenn Morris2017-02-23 19:04:27 -0500
commitba6c382404a9fe598be72e64beb21a90161ebb91 (patch)
tree259b79e3954f4ba23315e70f6361ad13b7b9dbc0
parent581c4d1f1c2a6415ded31e03540b93b195056b96 (diff)
downloademacs-ba6c382404a9fe598be72e64beb21a90161ebb91.tar.gz
emacs-ba6c382404a9fe598be72e64beb21a90161ebb91.zip
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."
317 ("organization" "Sponsoring organization of the conference") 317 ("organization" "Sponsoring organization of the conference")
318 ("publisher" "Publishing company, its location") 318 ("publisher" "Publishing company, its location")
319 ("note"))) 319 ("note")))
320 ("Conference" "Article in Conference Proceedings" ; same as InProceedings
321 (("author")
322 ("title" "Title of the article in proceedings (BibTeX converts it to lowercase)"))
323 (("booktitle" "Name of the conference proceedings")
324 ("year"))
325 (("editor")
326 ("volume" "Volume of the conference proceedings in the series")
327 ("number" "Number of the conference proceedings in a small series (overwritten by volume)")
328 ("series" "Series in which the conference proceedings appeared")
329 ("pages" "Pages in the conference proceedings")
330 ("month") ("address")
331 ("organization" "Sponsoring organization of the conference")
332 ("publisher" "Publishing company, its location")
333 ("note")))
320 ("InCollection" "Article in a Collection" 334 ("InCollection" "Article in a Collection"
321 (("author") 335 (("author")
322 ("title" "Title of the article in book (BibTeX converts it to lowercase)") 336 ("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.
444ALTERNATIVE if non-nil is an integer that numbers sets of 458ALTERNATIVE if non-nil is an integer that numbers sets of
445alternatives, starting from zero." 459alternatives, starting from zero."
446 :group 'BibTeX 460 :group 'BibTeX
447 :version "24.1" 461 :version "26.1" ; add Conference
448 :type 'bibtex-entry-alist) 462 :type 'bibtex-entry-alist)
449(put 'bibtex-BibTeX-entry-alist 'risky-local-variable t) 463(put 'bibtex-BibTeX-entry-alist 'risky-local-variable t)
450 464