Variable: org-export-with-section-numbers

org-export-with-section-numbers is a customizable variable defined in ox.el.gz.

Value

t

Documentation

Non-nil means add section numbers to headlines when exporting.

When set to an integer n, numbering will only happen for headlines whose relative level is higher or equal to n.

This option can also be set with the OPTIONS keyword, e.g. "num:t".

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-section-numbers t
  "Non-nil means add section numbers to headlines when exporting.

When set to an integer n, numbering will only happen for
headlines whose relative level is higher or equal to n.

This option can also be set with the OPTIONS keyword,
e.g. \"num:t\"."
  :group 'org-export-general
  :type 'boolean
  :safe #'booleanp)