From 31012ef284498b53a9346e4124232fd7f36eefb7 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 31 Mar 2010 22:34:28 -0400 Subject: [PATCH] Need to run latex between bibtex runs to resolve citation note references --- tex/Makefile | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.26.2