Variable: texinfo-lowersections-alist

texinfo-lowersections-alist is a variable defined in texinfmt.el.gz.

Value

((@chapter . @section) (@unnumbered . @unnumberedsec)
 (@centerchap . @unnumberedsec) (@majorheading . @heading)
 (@chapheading . @heading) (@appendix . @appendixsec)
 (@section . @subsection) (@unnumberedsec . @unnumberedsubsec)
 (@heading . @subheading) (@appendixsec . @appendixsubsec)
 (@subsection . @subsubsection)
 (@unnumberedsubsec . @unnumberedsubsubsec)
 (@subheading . @subsubheading) (@appendixsubsec . @appendixsubsubsec)
 (@subsubsection . @subsubsection)
 (@unnumberedsubsubsec . @unnumberedsubsubsec)
 (@subsubheading . @subsubheading)
 (@appendixsubsubsec . @appendixsubsubsec))

Documentation

An alist of next lower levels for chapters, sections, etc...

For example, chapter to section, section to subsection. Used by texinfo-raise-lower-sections. The keys specify types of section; the values correspond to the next lower types.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defvar texinfo-lowersections-alist
  '((@chapter . @section)
    (@unnumbered . @unnumberedsec)
    (@centerchap . @unnumberedsec)
    (@majorheading . @heading)
    (@chapheading . @heading)
    (@appendix . @appendixsec)

    (@section . @subsection)
    (@unnumberedsec . @unnumberedsubsec)
    (@heading . @subheading)
    (@appendixsec . @appendixsubsec)

    (@subsection . @subsubsection)
    (@unnumberedsubsec . @unnumberedsubsubsec)
    (@subheading . @subsubheading)
    (@appendixsubsec . @appendixsubsubsec)

    (@subsubsection . @subsubsection) ; Cannot go lower.
    (@unnumberedsubsubsec . @unnumberedsubsubsec)
    (@subsubheading . @subsubheading)
    (@appendixsubsubsec . @appendixsubsubsec))
  "An alist of next lower levels for chapters, sections, etc...
For example, chapter to section, section to subsection.
Used by `texinfo-raise-lower-sections'.
The keys specify types of section; the values correspond to the next
lower types.")