Variable: LaTeX-paragraph-commands-internal

LaTeX-paragraph-commands-internal is a variable defined in latex.el.

Value

("[" "]" "appendix" "begin" "caption" "chapter" "end" "include" "includeonly" "label" "maketitle" "newblock" "noindent" "par" "paragraph" "part" "section" "subsection" "subsubsection" "tableofcontents" "newpage" "clearpage")

Documentation

Internal list of LaTeX macros that should have their own line.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
;;; Navigation

(defvar LaTeX-paragraph-commands-internal
  '("[" "]" ; display math
    "appendix" "begin" "caption" "chapter" "end" "include" "includeonly"
    "label" "maketitle" "newblock" "noindent" "par" "paragraph" "part"
    "section" "subsection" "subsubsection" "tableofcontents"
    "newpage" "clearpage")
  "Internal list of LaTeX macros that should have their own line.")