Function: TeX-PDF-from-DVI
TeX-PDF-from-DVI is a byte-compiled function defined in tex.el.
Signature
(TeX-PDF-from-DVI)
Documentation
Return the value of variable TeX-PDF-from-DVI(var)/TeX-PDF-from-DVI(fun).
If TeX-PDF-from-DVI(var)/TeX-PDF-from-DVI(fun) is not set and obsolete option
TeX-PDF-via-dvips-ps2pdf is non-nil, return "Dvips"
for backward compatibility.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-PDF-from-DVI ()
"Return the value of variable `TeX-PDF-from-DVI'.
If `TeX-PDF-from-DVI' is not set and obsolete option
`TeX-PDF-via-dvips-ps2pdf' is non-nil, return \"Dvips\"
for backward compatibility."
(cond
(TeX-PDF-from-DVI)
(TeX-PDF-via-dvips-ps2pdf
"Dvips")))