Variable: TeX-command-output-list
TeX-command-output-list is a customizable variable defined in tex.el.
Value
nil
Documentation
List of regexps and file extensions.
Each element is a list, whose first element is a regular expression to match against the name of the command that will be used to process the TeX file.
The second element is either a string or a list with a string as element. If it is a string this is the default file extension that will be expected for output files that are produced by commands that match the first element. The real file extension will be obtained from the logging output if possible, defaulting to the given string. If it is a list, the element of the list will be the fixed extension used without looking at the logging output.
If this list does not yield an extension, the default is either "dvi"
or "pdf", depending on the setting of TeX-PDF-mode(var)/TeX-PDF-mode(fun).
Extensions must be given without the ".".
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-command-output-list
'(
; Add the following line if you want to use htlatex (tex4ht)
; ("\\`htlatex" ("html"))
)
"List of regexps and file extensions.
Each element is a list, whose first element is a regular expression to
match against the name of the command that will be used to process the TeX
file.
The second element is either a string or a list with a string as element.
If it is a string this is the default file extension that will be expected
for output files that are produced by commands that match the first
element. The real file extension will be obtained from the logging output
if possible, defaulting to the given string.
If it is a list, the element of the list will be the fixed extension used
without looking at the logging output.
If this list does not yield an extension, the default is either \"dvi\"
or \"pdf\", depending on the setting of `TeX-PDF-mode'.
Extensions must be given without the \".\"."
:group 'TeX-command
:type '(repeat (group (regexp :tag "Command Regexp")
(choice (string :tag "Default Extension")
(group (string :tag "Fixed Extension"))))))