Variable: org-beamer-environments-default

org-beamer-environments-default is a variable defined in ox-beamer.el.gz.

Value

(("block" "b" "\\begin{block}%a{%h}" "\\end{block}")
 ("alertblock" "a" "\\begin{alertblock}%a{%h}" "\\end{alertblock}")
 ("verse" "v" "\\begin{verse}%a %% %h" "\\end{verse}")
 ("quotation" "q" "\\begin{quotation}%a %% %h" "\\end{quotation}")
 ("quote" "Q" "\\begin{quote}%a %% %h" "\\end{quote}")
 ("structureenv" "s" "\\begin{structureenv}%a %% %h"
  "\\end{structureenv}")
 ("theorem" "t" "\\begin{theorem}%a[%h]%l" "\\end{theorem}")
 ("definition" "d" "\\begin{definition}%a[%h]%l" "\\end{definition}")
 ("example" "e" "\\begin{example}%a[%h]%l" "\\end{example}")
 ("exampleblock" "E" "\\begin{exampleblock}%a{%h}%l"
  "\\end{exampleblock}")
 ("proof" "p" "\\begin{proof}%a[%h]" "\\end{proof}")
 ("beamercolorbox" "o" "\\begin{beamercolorbox}%o{%h}"
  "\\end{beamercolorbox}"))

Documentation

Environments triggered by properties in Beamer export.

These are the defaults - for user definitions, see org-beamer-environments-extra.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-beamer.el.gz
(defconst org-beamer-environments-default
  '(("block"          "b" "\\begin{block}%a{%h}"          "\\end{block}")
    ("alertblock"     "a" "\\begin{alertblock}%a{%h}"     "\\end{alertblock}")
    ("verse"          "v" "\\begin{verse}%a %% %h"        "\\end{verse}")
    ("quotation"      "q" "\\begin{quotation}%a %% %h"    "\\end{quotation}")
    ("quote"          "Q" "\\begin{quote}%a %% %h"        "\\end{quote}")
    ("structureenv"   "s" "\\begin{structureenv}%a %% %h" "\\end{structureenv}")
    ("theorem"        "t" "\\begin{theorem}%a[%h]%l"        "\\end{theorem}")
    ("definition"     "d" "\\begin{definition}%a[%h]%l"     "\\end{definition}")
    ("example"        "e" "\\begin{example}%a[%h]%l"        "\\end{example}")
    ("exampleblock"   "E" "\\begin{exampleblock}%a{%h}%l"   "\\end{exampleblock}")
    ("proof"          "p" "\\begin{proof}%a[%h]"          "\\end{proof}")
    ("beamercolorbox" "o" "\\begin{beamercolorbox}%o{%h}" "\\end{beamercolorbox}"))
  "Environments triggered by properties in Beamer export.
These are the defaults - for user definitions, see
`org-beamer-environments-extra'.")