Variable: texinfo-section-list

texinfo-section-list is a variable defined in texinfo.el.gz.

Value

(("top" 1) ("chapter" 2) ("section" 3) ("subsection" 4)
 ("subsubsection" 5) ("unnumbered" 2) ("unnumberedsec" 3)
 ("unnumberedsubsec" 4) ("unnumberedsubsubsec" 5) ("appendix" 2)
 ("appendixsec" 3) ("appendixsection" 3) ("appendixsubsec" 4)
 ("appendixsubsubsec" 5) ("majorheading" 2) ("chapheading" 2)
 ("heading" 3) ("subheading" 4) ("subsubheading" 5))

Documentation

Alist of sectioning commands and their relative level.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
;;; Code:

;;; Don't you dare insert any `require' calls at top level in this file--rms.

(defvar texinfo-section-list
  '(("top" 1)
    ("chapter" 2)
    ("section" 3)
    ("subsection" 4)
    ("subsubsection" 5)
    ("unnumbered" 2)
    ("unnumberedsec" 3)
    ("unnumberedsubsec" 4)
    ("unnumberedsubsubsec" 5)
    ("appendix" 2)
    ("appendixsec" 3)
    ("appendixsection" 3)
    ("appendixsubsec" 4)
    ("appendixsubsubsec" 5)
    ("majorheading" 2)
    ("chapheading" 2)
    ("heading" 3)
    ("subheading" 4)
    ("subsubheading" 5))
  "Alist of sectioning commands and their relative level.")