Function: TeX-run-Biber

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

Signature

(TeX-run-Biber NAME COMMAND FILE)

Documentation

Create a process for NAME using COMMAND to format FILE with Biber.

Source Code

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