ransford/pdflatex-makefile

BibTeX citation error

Closed this issue · 2 comments

In my version of bibtex the error messages in the log file are not of the kind
"undefined references". Instead it is "undefinded citations".

ifneq ($(strip $(BIBFILES)),)
@if grep -q "undefined references" $*.log; then \
$(BIBTEX) $* && $(PDFLATEX) $* $(ERRFILTER); fi
endif

I changed it locally so it works for me, but I thought it may be interesting for you to know!

Thanks anyway for that great makefile, very helpful!

Best, Felix

Is this with natbib? At any rate, about to push a fix...

Yeah it is natbib, sorry I forgot to mention that. Thanks for the fix!