Variable: org-beamer-frame-level
org-beamer-frame-level is a customizable variable defined in
ox-beamer.el.gz.
Value
1
Documentation
The level at which headlines become frames.
Headlines at a lower level will be translated into a sectioning structure. At a higher level, they will be translated into blocks.
If a headline with a "BEAMER_env" property set to "frame" is found within a tree, its level locally overrides this number.
This variable has no effect on headlines with the "BEAMER_env"
property set to either "ignoreheading", "appendix", or
"note", which will respectively, be invisible, become an
appendix or a note.
This integer is relative to the minimal level of a headline within the parse tree, defined as 1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-beamer.el.gz
(defcustom org-beamer-frame-level 1
"The level at which headlines become frames.
Headlines at a lower level will be translated into a sectioning
structure. At a higher level, they will be translated into
blocks.
If a headline with a \"BEAMER_env\" property set to \"frame\" is
found within a tree, its level locally overrides this number.
This variable has no effect on headlines with the \"BEAMER_env\"
property set to either \"ignoreheading\", \"appendix\", or
\"note\", which will respectively, be invisible, become an
appendix or a note.
This integer is relative to the minimal level of a headline
within the parse tree, defined as 1."
:group 'org-export-beamer
:type 'integer)