Function: TeX-run-ps2pdf

TeX-run-ps2pdf is a byte-compiled function defined in tex.el.

Signature

(TeX-run-ps2pdf NAME COMMAND FILE)

Documentation

Create a process for NAME using COMMAND to convert FILE with ps2pdf.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-run-ps2pdf (name command file)
  "Create a process for NAME using COMMAND to convert FILE with ps2pdf."
  (let ((process (TeX-run-command name command file)))
    (setq TeX-sentinel-function #'TeX-ps2pdf-sentinel)
    (if TeX-process-asynchronous
        process
      (TeX-synchronous-sentinel name file process))))