Variable: org-beamer-environments-special

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

Value

(("againframe" "A")
 ("appendix" "x")
 ("column" "c")
 ("columns" "C")
 ("frame" "f")
 ("fullframe" "F")
 ("ignoreheading" "i")
 ("note" "n")
 ("noteNH" "N"))

Documentation

Alist of environments treated in a special way by the back-end.

Keys are environment names, as strings, values are bindings used in org-beamer-select-environment. Environments listed here, along with their binding, are hard coded and cannot be modified through org-beamer-environments-extra variable.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-beamer.el.gz
(defconst org-beamer-environments-special
  '(("againframe"     "A")
    ("appendix"       "x")
    ("column"         "c")
    ("columns"        "C")
    ("frame"          "f")
    ("fullframe"      "F")
    ("ignoreheading"  "i")
    ("note"           "n")
    ("noteNH"         "N"))
  "Alist of environments treated in a special way by the back-end.
Keys are environment names, as strings, values are bindings used
in `org-beamer-select-environment'.  Environments listed here,
along with their binding, are hard coded and cannot be modified
through `org-beamer-environments-extra' variable.")