The latexmk tag has no wiki summary.
16
votes
4answers
3k views
Don't make me manually abort a LaTeX compile when there's an error
As suggested here, latexmk is a handy way to continually compile your document whenever the source changes. But often when you're working on a document you'll end up with errors and then latex will ...
13
votes
2answers
1k views
How to call latexmk in emacs, and jump to next-error
I would like to use latexmk to compile my LaTeX documents in Emacs. Especially I need the Emacs functionality next-error, which is typically called with C-x `, and jumps to the next LaTeX error in the ...
11
votes
3answers
426 views
How do I bind latexmk to one key in Emacs and have it show errors if there are any
I'm using AUCTeX and I would like to bind a key, e.g. C-0, that does the following:
Saves the active file without prompting me.
Runs latexmk on the active file without prompting me.
Shows me errors ...
6
votes
3answers
2k views
Compile XeLaTeX tex file with latexmk
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 ...
4
votes
2answers
597 views
Is there a LaTeX command that will log to the output/error console?
I have created a LaTeX \todo{} command which outputs todo notes in the margin (following the [nice marginpars example here][1]):
\newcommand\todo[1]{\marginpar{#1}}
However, I'd really like to ...
3
votes
2answers
272 views
Emacs latexmk function throws me into an empty buffer
This is a follow up to How do I bind latexmk to one key in Emacs and have it show errors if there are any.
I'm using a function in Emacs to compile LaTeX documents with latexmk but it does not behave ...
1
vote
1answer
397 views
Font errors with pdfLaTeX microtype package
On Ubuntu 10.4LTS I'm trying to use the microtype package in a memoir class of document, for example like this:
\usepackage[final,expansion=true]{microtype}
However, when I attempt to compile this ...