Makefile for multi-file LaTeX document - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:45:42Z http://stackoverflow.com/feeds/question/637227 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/637227/makefile-for-multi-file-latex-document 4 Makefile for multi-file LaTeX document Will Robertson 2009-03-12T02:58:08Z 2009-04-06T10:15:34Z <p>I'm trying to simplify/improve the Makefile for compiling my thesis. The Makefile works nicely for compiling the whole thing; I've got something like this:</p> <pre><code>show: thesis.pdf open thesis.pdf thesis.pdf: *.tex pdflatex --shell-escape thesis </code></pre> <p>This allows me to type <code>make</code> and any changes are detected (if any) and it's recompiled before being displayed.</p> <p>Now I'd like to extend it to conditionally compile only individual chapters. For example, this allows me to write <code>make xpmt</code> to get just a single chapter in a round-about sort of way:</p> <pre><code>xpmt: ch-xpmt.pdf open ch-xpmt.pdf ch-xpmt.pdf: xpmt.tex pdflatex --shell-escape --jobname=ch-xpmt \ "\includeonly{xpmt}\input{thesis}" </code></pre> <p>But I don't want to have to write this down identically for each individual chapter. How can I write the rules above in a general enough way to avoid repetition?</p> <p>(More of an exercise in learning how to write Makefiles rather than to solve any real problem; obviously in this case it would actually be trivial to copy and paste the above code enough times!)</p> http://stackoverflow.com/questions/637227/makefile-for-multi-file-latex-document/637248#637248 4 Answer by David for Makefile for multi-file LaTeX document David 2009-03-12T03:15:21Z 2009-03-12T03:21:19Z <p>If you have chapters named <code>xpmt</code> (guessing that's "experiment"?) and, say, <code>thry</code>, <code>anls</code>, <code>conc</code>, or whatever:</p> <pre><code>xmpt thry anls conc: %: ch-%.pdf open $&lt; ch-%.pdf: %.tex pdflatex --shell-escape --jobname=ch-$* "\includeonly{$*}\input{thesis}" </code></pre> <p>Or to do it the "proper" way with make variables, I think it'd be something like this:</p> <pre><code>chapters = xmpt thry anls conc main = thesis .PHONY: $(chapters) show show: $(main).pdf open $&lt; $(main).pdf: $(main).tex $(addsuffix .tex,$(chapters)) pdflatex --shell-escape $(main) $(chapters): %: ch-%.pdf open $&lt; ch-%.pdf: %.tex pdflatex --shell-escape --jobname=ch-$* "\includeonly{$*}\input{$(main)}" </code></pre> http://stackoverflow.com/questions/637227/makefile-for-multi-file-latex-document/720839#720839 2 Answer by Baruch Even for Makefile for multi-file LaTeX document Baruch Even 2009-04-06T09:52:00Z 2009-04-06T09:52:00Z <p>You should consider something like rubber to handle the LaTeX building for you. While it is possible to use make to do most of the work a specialized tool can handle the intricacies of LaTeX such as rerunning bibtex a number of times to get all references sorted and things like that.</p> http://stackoverflow.com/questions/637227/makefile-for-multi-file-latex-document/720887#720887 1 Answer by Eugene Morozov for Makefile for multi-file LaTeX document Eugene Morozov 2009-04-06T10:15:34Z 2009-04-06T10:15:34Z <p>Also, check out the <a href="http://www.acoustics.hut.fi/u/mairas/UltimateLatexMakefile/" rel="nofollow">ultimate latex makefile</a>.</p>