Variable: org-export-with-sub-superscripts

org-export-with-sub-superscripts is a customizable variable defined in ox.el.gz.

Value

t

Documentation

Non-nil means interpret "_" and "^" for export.

If you want to control how Org displays those characters, see org-use-sub-superscripts.

When this option is turned on, you can use TeX-like syntax for sub- and superscripts and see them exported correctly.

You can also set the option with #+OPTIONS: ^:t

See org-use-sub-superscripts docstring for more details.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-sub-superscripts t
  "Non-nil means interpret \"_\" and \"^\" for export.

If you want to control how Org displays those characters, see
`org-use-sub-superscripts'.

When this option is turned on, you can use TeX-like syntax for
sub- and superscripts and see them exported correctly.

You can also set the option with #+OPTIONS: ^:t

See `org-use-sub-superscripts' docstring for more details."
  :group 'org-export-general
  :version "24.4"
  :package-version '(Org . "8.0")
  :type '(choice
	  (const :tag "Interpret them" t)
	  (const :tag "Curly brackets only" {})
	  (const :tag "Do not interpret them" nil))
  :safe (lambda (x) (memq x '(t nil {}))))