Variable: tex-start-commands

tex-start-commands is a customizable variable defined in tex-mode.el.gz.

Value

"\\nonstopmode\\input"

Documentation

TeX commands to use when starting TeX.

They are shell-quoted and precede the input file name, with a separating space. If nil, no commands are used. See the documentation of tex-command.

This variable was added, or its default value changed, in Emacs 22.1.

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
;;;###autoload
(defcustom tex-start-commands "\\nonstopmode\\input"
  "TeX commands to use when starting TeX.
They are shell-quoted and precede the input file name, with a separating space.
If nil, no commands are used.  See the documentation of `tex-command'."
  :type '(radio (const :tag "Interactive (nil)" nil)
		(const :tag "Nonstop (\"\\nonstopmode\\input\")"
		       "\\nonstopmode\\input")
		(string :tag "String at your choice"))
  :group 'tex-run
  :version "22.1")