Variable: org-startup-with-latex-preview

org-startup-with-latex-preview is a customizable variable defined in org.el.gz.

Value

nil

Documentation

Non-nil means preview LaTeX fragments when loading a new Org file.

This can also be configured on a per-file basis by adding one of the following lines anywhere in the buffer:
   #+STARTUP: latexpreview
   #+STARTUP: nolatexpreview

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-startup-with-latex-preview nil
  "Non-nil means preview LaTeX fragments when loading a new Org file.

This can also be configured on a per-file basis by adding one of
the following lines anywhere in the buffer:
   #+STARTUP: latexpreview
   #+STARTUP: nolatexpreview"
  :group 'org-startup
  :version "24.4"
  :package-version '(Org . "8.0")
  :type 'boolean)