Variable: preview-LaTeX-disable-pdfoutput

preview-LaTeX-disable-pdfoutput is a variable defined in preview.el.

Value

(("\\`\\(pdf[^ ]*\\)\\(\\( +[-&]\\([^ \"]\\|\"[^\"]*\"\\)*\\| +\"[-&][^\"]*\"\\)*\\)\\(.*\\)\\'"
  "\\1\\2 \"\\\\pdfoutput=0 \" \\5"))

Documentation

This replacement places "\pdfoutput=0 " after the options of any command starting with pdf.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defconst preview-LaTeX-disable-pdfoutput
  '(("\\`\\(pdf[^ ]*\\)\
\\(\\( +[-&]\\([^ \"]\\|\"[^\"]*\"\\)*\\|\
 +\"[-&][^\"]*\"\\)*\\)\\(.*\\)\\'"
   . ("\\1\\2 \"\\\\pdfoutput=0 \" \\5")))
  "This replacement places `\"\\pdfoutput=0 \"' after the options
of any command starting with `pdf'.")