vote up 10 vote down star
1

I'm trying to figure out the best build system for latex.

Currently, I use latex-makefile, editing in vim, and viewing changes in Okular or gv. The major problem is that it sometimes gets hides errors on me, and I have to run latex manually. The major advantages are that it does all the iteration I need, and offers both pdf and ps simply.

If you have experience with

  • latex-mk
  • vim-latex
  • kile
  • lyx
  • miktex
  • latex-makefile
  • the ultimate latex makefile
  • rubber
  • any others I havent come across

Would you recommend them, and why/why not?

flag

79% accept rate
4  
I see a vote to close as 'Not programming related'. It seems to be fairly established that latex questions are appropriate here. A build system question is, if anything, more appropriate to programming than other latex questions. – Paul Biggar Aug 6 at 17:21
1  
I like latexmk, I run it with MacTeX. It runs latex enough times to get the cross refs. right, takes care of bibtex, and makeindex as well. Miktex is mostly for windows, so its probably not applicable to you, but there is a beta for it on linux. lyx is wysiwyg for tex, I never liked it b/c i'm comfortable working with the source. Kile is a pretty nice graphical front end for KDE, though I don't use most of the buttons... so it's a bit pointless. :) – Mica Aug 6 at 17:56
7  
LaTeX is Turing complete, and dependency controlling build systems are a programming concern. This stuff belongs here and no mistake. – dmckee Aug 6 at 18:19

11 Answers

vote up 3 vote down

I haven't used it myself, but I've heard of Rubber as a good alternative.

From their website:

Rubber is a program whose purpose is to handle all tasks related to the compilation of LaTeX documents. This includes compiling the document itself, of course, enough times so that all references are defined, and running BibTeX to manage bibliographic references. Automatic execution of dvips to produce PostScript documents is also included, as well as usage of pdfLaTeX to produce PDF documents.

link|flag
I tried this before, and I don't remember what problems I had that made me look elsewhere. I just tried it now and it seems to work very well. Thanks. – Paul Biggar Aug 6 at 17:05
I moved my comments about rubber into their own answer: stackoverflow.com/questions/1240037/… – Paul Biggar Aug 24 at 11:46
vote up 0 vote down

"Better" is a very relative term... what else do you want to do? It seems like this makefile handles quite a bit, and it makes me wish I was running a *nix at work instead of windows... if there are more things you need to handle with the makefile, why not add them in?

To make it "better" you would need to provide more details on what exactly you're doing.

For instance, you could have it parse the .log file with grep, search for errors or warnings, dump them into another file, then open the new file so you can read through the errors.

It all depends on what you want to do...

link|flag
OK, I've clarified "better" in the question. – Paul Biggar Aug 6 at 16:43
What is your end goal? "More productive" is still quite relative... If your major headache is errors and having to run latex manually, I might suggest moving away from vim and onto something like Kile, which will spit out errors in the bottom pane... do you have the latex vim plugin? You could tell latex to run in non-stop mode (i.e. not stop on errors) by adding the -r flag to your makefile. Again, it all depends on what you want to do, since latex is pretty flexable. Thus, if you do not have anything really specific in mind, you probably are not going to get great answers :D – Mica Aug 6 at 17:20
Mica S.: I'm trying to get suggestions as to potentially better ways to do it. I'll clarify better. – Paul Biggar Aug 6 at 17:33
vote up 2 vote down

I use Eclipse with the TexEcplise add-on for editing my TeX-files. It has syntax highlight for LaTeX. When you ask a preview of a non-altered and already compiled tex file, it open the file in the viewer. When the tex file was altered, then it compiles the tex file prior to viewing it. It does the necessary iterations, but only if needed.

Another advantage is that all errors and warnings are summarised in a box and they are highlighted in the tex file! This is a screenshot from the TexEclipse homepage.

link|flag
vote up 0 vote down

I've been using the latex-makefile for a while. Its pretty good if you're trying to use an edit-compile-preview cycle:

  • Takes almost zero configuration.
  • Builds .ps or .pdf.
  • Handles all the necessary iteration. I literally have to write nothing else.
  • Quite robust, but occasionally the errors and warnings get mangled.
  • It doesn't kill the old pdf until the new one is built.
  • It builds other files, like generating eps from gnuplot. I havent found this hugely useful though.
  • The author is very quick to respond to feature requests.
  • I can replicate the advantages of latexmk fairly easily with:

    while [ 1 ]; do /usr/bin/make; done
    

Some downsides:

  • It only allows pdf generation via dvi -> ps -> pdf, instead of directly via pdftex.
  • Its error output isnt the same as the standard latex one, so vim isnt moving to the correct line.
  • It doesnt always recompile on changes in bibtex and other non-tex sources.
  • If I remove a file, it doesn't remove the dependency without a make clean.
link|flag
vote up 1 vote down

I've just tried out latexmk. If you do

latexmk -pvc file.tex

Then it will auto preview (DVI by default).

  • Handles dependencies
  • DVI, ps or pdf
  • Iterates fine.
  • Very configurable, see man latexmk

Downsides:

  • It doesnt condense errors, which isnt hugely useful (workaround: use rubber-info seperately)
  • Bug in the man file: "Sometimes a viewer (gv) tries to read an updated .ps or .pdf file after its creation is started but before the file is complete. Work around: manually refresh (or reopen) display.". It would be better if it built it via a temporary .pdf file to avoid this.
  • Not hugely user friendly.
link|flag
latexmk doesn’t support XeTeX and there’s apparently no way of changing this short of hacking the hard-coded value of the pdflatex executable. Very annoying. – Konrad Rudolph Nov 19 at 19:52
vote up 1 vote down

(This is a work in progress)

I'm trying vim-latexsuite at the moment. It basically turns vim into an IDE for latex.

Learning curve:

  • Very unintuitive, but after the tutorial, it seems OK.
  • It redefines some keys I like, and I can't seem to fix them.

Autocomplete:

  • Makes using some built-in macros simpler
  • Adding <<+>> to for user macros is very annoying.
  • Replacing " with `` and the like is nice until you want " for some reason, then its an exercise in frustration.
  • Its autocomplete can be annoying too. I have to reprogram myself for working in latex.

Build system:

  • Awful
  • quickfix doesn't work - it often puts me in the wrong file
  • When latex reports errors with the result split over 2 lines, it doesn't detect it.
link|flag
Much the same experience here, but I now use it all the time and it works quite nicely for editing. I like the macros, after some getting used to. – Konrad Rudolph Nov 19 at 19:49
vote up 0 vote down

I'm using MikTeX in combination with TeXnicCenter. It works fine for my purposes. I've never ever had the system hiding errors or warnings. Custom build scripts are easy to create and configure.

link|flag
1  
is that multi-platform? – fortran Sep 8 at 16:34
Nope, seems to be windows only – Martijn Sep 9 at 6:42
vote up 0 vote down

ltx claims to be a wrapper to latex to speed up the compilation of latex documents. I couldn't make it work though (some problems with initex).

link|flag
vote up 2 vote down

I'm trying rubber for a while. I'll condense the results here:

  • Rubber will automatically convert .eps files into .pdfs for pfdlatex. However, it seems to only do this for includegraphics macros. If you have your own macro, it wont.
  • rubber-info is great, which is magic. It is certainly better than anything else I've seen at getting error message and lines. And you don't actually need to use rubber to build to use it.
  • It doesn't seem to know when to stop iterating, often stopping early.
  • It overwrites your PDF as it builds, which is irritating (it lacks a nice feature from latex-makefile where it builds it in a temp file).
link|flag
vote up 2 vote down check

After considering all these options for some time, I have settled with the following solution.

  • Set vim to write continuously as I type.
  • Run a script in the background to build continuously, refreshing the pdf as it goes. latexmk is nearly good enough, except that it builds in place, which gets reloaded at a bad time in okular (my viewer).

#!/bin/bash

set -x
ulimit -t 10 # sometimes pdflatex gets stuck

while [ 1 ]; do
  latexmk -pdf thesis > /dev/null    # better than running pdflatex manually, as this wont rebuild if there's nothing there.

  # For rubber-info
  cp thesis.log t.log

  # View a different file (t.pdf) so that it doesn't reload mid-compile
  if [ -e thesis.pdf ]; then # Check the compile succeeded first

     # ignore if it's unchanged.
     if [ ! -e t.pdf -o `diff t.pdf thesis.pdf | wc -l` -gt 10 ]; then # 10 is the diff size with only metadata changed

        # We RM first so that okular registers it.
        rm -f t.pdf
        cp thesis.pdf t.pdf
     fi
  fi

  sleep 1 # give it time to be killed by a CTRL-C
done
  • Use rubber-info to get the errors and warnings from the log file. The script above saves the log file in t.log. In vim:

autocmd FileType tex set makeprg=rubber-info\ t.log
autocmd FileType tex set errorformat=%f:%l:\ %m
link|flag
vote up 0 vote down

I wanted to use the script you posted in your final answer.

Unfortunately, it didn’t work with my setting (MacVim with vim-latexsuite, Skim as the viewer and XeTeX). I also use forward search (i.e. I use the feature that pressing \ls in Vim will jump to the corresponding point in the PDF document in the open viewer).

Furthermore, my document isn’t called thesis.tex (big surprise; it’s not a thesis). I’ve therefore done some more configuration work that I’d like to share. Attention, my bash skills are horrible.

#!/bin/bash

set -x
ulimit -t 10 # sometimes pdflatex gets stuck

if [ "$1" = "" ]; then
    echo "No target name specified"
    exit 1
fi

TARGET=$1
SOURCE=$1.tex
TMPSOURCE=_$TARGET.tex
TMPTARGET=_$TARGET

while [ 1 ]; do
    # Compile a different file ($TMPSOURCE.pdf) so that it doesn't reload mid-compile
    cp $SOURCE $TMPSOURCE
    # better than running pdflatex manually, as this wont rebuild if there's nothing there.
    latexmk -pdf -silent $TMPTARGET > /dev/null

    # For rubber-info
    cp $TMPTARGET.log $TARGET.log

    if [ -e $TMPTARGET.pdf ]; then # Check the compile succeeded first
        # No output file yet.
        [ ! -e $TARGET.pdf ]
        HASNOPDF=$?
        # ignore if it's unchanged.
        # OS X diff doesn't consider binary files. Single-line output, return value 2
        diff $TARGET.pdf $TMPTARGET.pdf
        OUTPUTDIFFERS=$?
        if [ $HASNOPDF -eq 0 -o $OUTPUTDIFFERS -ne 0 ]; then
            # Do NOT RM since Skim cannot deal with this.
            cp $TMPTARGET.pdf $TARGET.pdf
        fi
    fi

    sleep 1 # give it time to be killed by a CTRL-C
done

This compiles a temporary file and copies it back to whatever name was given (instead of the other way round as your script does); usage of the script:

./scriptname project

Where project is the name of the TeX file, without file extension.

I’ve also changed the rubber-info line:

autocmd FileType tex exe "set makeprg=rubber-info\\ _" . expand("%:t:r") . ".log"

And I needed to patch my latexmk to use XeTeX since the name of the executable was hard-coded.

Unfortunately, this still destroys the output PDF file when I’ve saved my document before completing a statement, since latexmk seems to always produce a PDF file, even on error – and its return code is always 0, which sucks.

(To clarify this, say that I’ve just typed emph{ into my document and save it. The background script will promptly compile the document, and fail. But it will still produce a (largely empty) output file).

Additionally, forward search no longer works properly; it basically jumps to a wrong point in the document. I suspect that this has something to do with my copying the document before compilation.

So, this is still a completely unsatisfactory solution, even though I didn’t even enable continuous saving on typing in MacVim yet.

link|flag
Actually, I rewrote the script over the last while. I'll post it later. – Paul Biggar Nov 20 at 16:36

Your Answer

Get an OpenID
or

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