From: W. Trevor King Date: Thu, 1 Apr 2010 02:34:28 +0000 (-0400) Subject: Need to run latex between bibtex runs to resolve citation note references X-Git-Tag: v1.0~415 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=31012ef284498b53a9346e4124232fd7f36eefb7;p=thesis.git Need to run latex between bibtex runs to resolve citation note references --- diff --git a/tex/Makefile b/tex/Makefile index ea80dbf..2d1c300 100644 --- a/tex/Makefile +++ b/tex/Makefile @@ -3,8 +3,10 @@ LATEX = pdflatex thesis.pdf : build (cd ./build && $(LATEX) root) + (cd ./build && bibtex root) (cd ./build && $(LATEX) root) (cd ./build && bibtex root) + (cd ./build && $(LATEX) root) (cd ./build && bibtex root) (cd ./build && makeindex root.nlo -s nomencl.ist -o root.nls) (cd ./build && makeindex root.idx)