(defcustom tex-cmd-bibtex-args "--min-crossref=100"
"Extra args to pass to `bibtex' by default."
- :type 'string)
+ :type 'string
+ :version "23.1"
+ :group 'tex-run)
(defun tex-format-cmd (format fspec)
"Like `format-spec' but adds user-specified args to the command.
(concat prefix cmd
(if extra-args (concat " " extra-args))
" " (format-spec args fspec)))))
-
+
(defun tex-compile-default (fspec)
"Guess a default command given the `format-spec' FSPEC."
;; TODO: Learn to do latex+dvips!