How can one compile a XeLaTeX tex document using latexmk on Mac OS X?

At present I am running latexmk job.tex and getting an error:

! 
 ********************************************
 * XeTeX is required to compile this document.
 * Sorry!
 ********************************************.
\RequireXeTeX ...********************************}
                                                  \endgroup \fi 
l.18 \RequireXeTeX

? ^D
! Emergency stop.
\RequireXeTeX ...********************************}
                                                  \endgroup \fi 
l.18 \RequireXeTeX

The first line of my tex file is (as suggested by this post):

% !TEX TS-program = xelatexmk

and I've tried others (e.g. program=xelatex), but to no avail.

latexmk describes its commands as follows:

$ latexmk -commands xelatex job
Commands used by latexmk:
   To run latex, I use "latex %O %S"
   To run pdflatex, I use "pdflatex %O %S"
   ...

There doesn't appear bo be any logical mechanism for selecting a tex program from the command line, and it's not clear from the source how one would do this, either.

I've also looked atrubber, but it doesn't seem to work either.

I appreciate any insight you may be able to provide.

Brian

link|improve this question

Which version of latexmk are you using? Besiedes the original, there is the Texshop version of latexmk maintained by Herbert Schulz, or the Texlive default version by John Collins? Look at the output to latexmk -v to see which. Only the Texshop version comes packaged with xelatexmk and recognises !TEX directives; with the jcc version you will have to write an RC file to invoke xelatex and how to handle xdv files. – Charles Stewart Jun 28 '10 at 9:58
@Charles - thank you for the post - that's quite helpful. I'm using John Collins' version, from Texlive. – Brian M. Hunt Jun 29 '10 at 1:11
feedback

3 Answers

up vote 3 down vote accepted

That's my quick fix, so that latexmk works with XeLaTeX:
Add

`elsif (/^-xelatex$/) { $pdf_mode = 1; $pdflatex = 'xelatex %O %S'; $pdf_previewer =
'start evince %O %S';}`

above (or near) the line

`elsif (/^-pdf$/) { $pdf_mode = 1; }`

.

Then you can call latexmk -xelatex file.tex. Works, but I didn't test it extensively. Should work similarly with lualatex.

link|improve this answer
1  
I'll add an -xelatex option to latexmk in the next version (4.31). This will work like the modification given here (except for the setting of the previewer to evince). – John Collins Dec 24 '11 at 19:39
feedback
latexmk -v
Latexmk, John Collins, 16 January 2010. Version 4.13a

I put

$pdflatex = 'xelatex --shell-escape %O %S';

in my .latexmkrc file. This is a workaround, of course. But it works for me when I call

latexmk -pvc -pdf MyXetexFile
link|improve this answer
feedback
$ latexmk -v
Latexmk, John Collins, 27 July 2010. Version 4.18

I run with the command:

latexmk -pdf -e '$pdflatex=q/xelatex %O %S/' foo.tex

which is basically the same as the answers from andre-r and Kay, but only from the command-line.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.