Variable: org-bibtex-types

org-bibtex-types is a variable defined in ol-bibtex.el.gz.

Value

Large value
((:article (:description . "An article from a journal or magazine")
	   (:required :author :title :journal :year)
	   (:optional :volume :number :pages :month :note :doi))
 (:book (:description . "A book with an explicit publisher")
	(:required (:editor :author) :title :publisher :year)
	(:optional (:volume :number) :series :address :edition :month
		   :note :doi))
 (:booklet
  (:description
   . "A work that is printed and bound, but without a named publisher or sponsoring institution.")
  (:required :title)
  (:optional :author :howpublished :address :month :year :note :doi
	     :url))
 (:conference (:description . "")
	      (:required :author :title :booktitle :year)
	      (:optional :editor :pages :organization :publisher
			 :address :month :note :doi :url))
 (:inbook
  (:description
   . "A part of a book, which may be a chapter (or section or whatever) and/or a range of pages.")
  (:required (:author :editor) :title (:chapter :pages) :publisher
	     :year)
  (:optional :crossref (:volume :number) :series :type :address
	     :edition :month :note :doi))
 (:incollection
  (:description . "A part of a book having its own title.")
  (:required :author :title :booktitle :publisher :year)
  (:optional :crossref :editor (:volume :number) :series :type
	     :chapter :pages :address :edition :month :note :doi))
 (:inproceedings
  (:description . "An article in a conference proceedings")
  (:required :author :title :booktitle :year)
  (:optional :crossref :editor (:volume :number) :series :pages
	     :address :month :organization :publisher :note :doi))
 (:manual (:description . "Technical documentation.")
	  (:required :title)
	  (:optional :author :organization :address :edition :month
		     :year :note :doi :url))
 (:mastersthesis (:description . "A Master’s thesis.")
		 (:required :author :title :school :year)
		 (:optional :type :address :month :note :doi :url))
 (:misc (:description . "Use this type when nothing else fits.")
	(:required)
	(:optional :author :title :howpublished :month :year :note
		   :doi :url))
 (:phdthesis (:description . "A PhD thesis.")
	     (:required :author :title :school :year)
	     (:optional :type :address :month :note :doi :url))
 (:proceedings (:description . "The proceedings of a conference.")
	       (:required :title :year)
	       (:optional :editor (:volume :number) :series :address
			  :month :organization :publisher :note :doi))
 (:techreport
  (:description
   . "A report published by a school or other institution.")
  (:required :author :title :institution :year)
  (:optional :type :address :month :note :doi :url))
 (:unpublished
  (:description
   . "A document having an author and title, but not formally published.")
  (:required :author :title :note) (:optional :month :year :doi :url)))

Documentation

BibTeX entry types with required and optional parameters.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol-bibtex.el.gz
;;; BibTeX data
(defvar org-bibtex-types
  '((:article
     (:description . "An article from a journal or magazine")
     (:required :author :title :journal :year)
     (:optional :volume :number :pages :month :note :doi))
    (:book
     (:description . "A book with an explicit publisher")
     (:required (:editor :author) :title :publisher :year)
     (:optional (:volume :number) :series :address :edition :month :note :doi))
    (:booklet
     (:description . "A work that is printed and bound, but without a named publisher or sponsoring institution.")
     (:required :title)
     (:optional :author :howpublished :address :month :year :note :doi :url))
    (:conference
     (:description . "")
     (:required :author :title :booktitle :year)
     (:optional :editor :pages :organization :publisher :address :month :note :doi :url))
    (:inbook
     (:description . "A part of a book, which may be a chapter (or section or whatever) and/or a range of pages.")
     (:required (:author :editor) :title (:chapter :pages) :publisher :year)
     (:optional :crossref (:volume :number) :series :type :address :edition :month :note :doi))
    (:incollection
     (:description . "A part of a book having its own title.")
     (:required :author :title :booktitle :publisher :year)
     (:optional :crossref :editor (:volume :number) :series :type :chapter :pages :address :edition :month :note :doi))
    (:inproceedings
     (:description . "An article in a conference proceedings")
     (:required :author :title :booktitle :year)
     (:optional :crossref :editor (:volume :number) :series :pages :address :month :organization :publisher :note :doi))
    (:manual
     (:description . "Technical documentation.")
     (:required :title)
     (:optional :author :organization :address :edition :month :year :note :doi :url))
    (:mastersthesis
     (:description . "A Master’s thesis.")
     (:required :author :title :school :year)
     (:optional :type :address :month :note :doi :url))
    (:misc
     (:description . "Use this type when nothing else fits.")
     (:required)
     (:optional :author :title :howpublished :month :year :note :doi :url))
    (:phdthesis
     (:description . "A PhD thesis.")
     (:required :author :title :school :year)
     (:optional :type :address :month :note :doi :url))
    (:proceedings
     (:description . "The proceedings of a conference.")
     (:required :title :year)
     (:optional :editor (:volume :number) :series :address :month :organization :publisher :note :doi))
    (:techreport
     (:description . "A report published by a school or other institution.")
     (:required :author :title :institution :year)
     (:optional :type :address :month :note :doi :url))
    (:unpublished
     (:description . "A document having an author and title, but not formally published.")
     (:required :author :title :note)
     (:optional :month :year :doi :url)))
  "BibTeX entry types with required and optional parameters.")