Function: TeX-run-dvipdfmx

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

Signature

(TeX-run-dvipdfmx NAME COMMAND FILE)

Documentation

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

Source Code

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