Variable: org-latex-toc-include-unnumbered

org-latex-toc-include-unnumbered is a customizable variable defined in ox-latex.el.gz.

Value

nil

Documentation

Whether to include unnumbered headings in the table of contents.

The default behavior is to include numbered headings only, as it is usually the case in LaTeX (but different from other Org exporters). To include an unnumbered heading, set the :UNNUMBERED: property to toc

This variable was added, or its default value changed, in Org version
9.8.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defcustom org-latex-toc-include-unnumbered nil
  "Whether to include unnumbered headings in the table of contents.

The default behavior is to include numbered headings only, as it is
usually the case in LaTeX (but different from other Org exporters).
To include an unnumbered heading, set the `:UNNUMBERED:'
property to `toc'"
  :group 'org-export-latex
  :package-version '(Org . "9.8")
  :type 'boolean
  :safe #'booleanp)