Makefile for multi-file LaTeX document - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:45:42Zhttp://stackoverflow.com/feeds/question/637227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/637227/makefile-for-multi-file-latex-document4Makefile for multi-file LaTeX documentWill Robertson2009-03-12T02:58:08Z2009-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#6372484Answer by David for Makefile for multi-file LaTeX documentDavid2009-03-12T03:15:21Z2009-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 $<
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 $<
$(main).pdf: $(main).tex $(addsuffix .tex,$(chapters))
pdflatex --shell-escape $(main)
$(chapters): %: ch-%.pdf
open $<
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#7208392Answer by Baruch Even for Makefile for multi-file LaTeX documentBaruch Even2009-04-06T09:52:00Z2009-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#7208871Answer by Eugene Morozov for Makefile for multi-file LaTeX documentEugene Morozov2009-04-06T10:15:34Z2009-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>