45

I use Emacs+AUCTeX to write my *-tex. Using the PDF mode, I can run pdfTeX automatically with the C-c C-c command. However, I don't see a way to run XeTeX automatically, or even set up a command option in the drop down window. My LISP skills are very rusty, and I was wondering if someone had a tex.el patch to enable XeTeX support ?

doed
  • 938
Suresh
  • 16,511
  • 14
  • 55
  • 64

4 Answers4

59

If you have AUCTeX version 11.86, you can set the local variable TeX-engine to xetex. This is what I use:

%%% Local Variables: 
%%% coding: utf-8
%%% mode: latex
%%% TeX-engine: xetex
%%% End: 

You have to open the file again for the effect to take place (C-x C-v).

You can check the version you have with

C-h v AUCTeX-version <RET>
egreg
  • 1,121,712
21

You can add this to your emacs.el:

(setq-default TeX-engine 'xetex)

And add this if you want a PDF output by default:

(setq-default TeX-PDF-mode t)
Jiehong
  • 227
16

For versions 11.86 and higher,¹ there is also

M-x TeX-engine-set RET xetex RET

which will make AUCTeX compile that particular file with XeTeX (or xelatex if the file is considered a LaTeX file). Note that this 'setting' will only continue to work so long as emacs is visiting that file. Often useful if you forgot to set the local variables, or you want to quickly compare how different engines compile the same document. Since PDFTeX can be much faster than other engines (esp. LuaTeX), I often use it while writing my documents, and only switch to LuaTeX in the final stage(s). Resetting the Local Variables all the time is not ideal for that.


¹ Actually, I'm not sure when this command was added....

jon
  • 22,325
11

You could customize the Tex Command List:

   M-x customize-variable TeX-command-list

There you can add a new commands to AUCTeX. Alternatively, you can directly modify your emacs init file:

;; set XeTeX mode in TeX/LaTeX
(add-hook 'LaTeX-mode-hook 
          (lambda()
             (add-to-list 'TeX-command-list '("XeLaTeX" "%`xelatex%(mode)%' %t" TeX-run-TeX nil t))
             (setq TeX-command-default "XeLaTeX")
             (setq TeX-save-query nil)
             (setq TeX-show-compilation t)))
Rémi
  • 301