Fix citation keys for now
This commit is contained in:
parent
8717fc9107
commit
39c0b7b067
2 changed files with 9 additions and 13 deletions
16
Makefile
16
Makefile
|
|
@ -10,23 +10,25 @@ CHAPTERS := $(shell find -maxdepth 1 -type d -name 'chapter-*')
|
|||
|
||||
VERSION_STRING := $(shell git describe --always --tags --long)
|
||||
|
||||
all: clean thesis.pdf
|
||||
all: thesis.pdf
|
||||
|
||||
# We need three runs for biblatex's defernumbers
|
||||
%.pdf: %.tex common-packages.tex common-defs.tex main.bib version.tex
|
||||
pdflatex -shell-escape $<
|
||||
biber $*
|
||||
pdflatex -shell-escape $<
|
||||
biber $*
|
||||
pdflatex -shell-escape $<
|
||||
echo
|
||||
echo "Undefined biblatex references:"
|
||||
grep -A2 'Package biblatex Warning: The following entry could not be found' thesis.log | sed -n '3~4{s/(biblatex) *//;p}' || echo "<None>"
|
||||
|
||||
.PHONY: preview
|
||||
preview:
|
||||
biber --input-directory=.. chapter || true
|
||||
pdflatex -shell-escape -jobname thesis '\def\thesispreviewmode{}\input{thesis.tex}'
|
||||
#.PHONY: preview
|
||||
#preview:
|
||||
# pdflatex -shell-escape -jobname thesis '\def\thesispreviewmode{}\input{thesis.tex}'
|
||||
# biber thesis
|
||||
# pdflatex -shell-escape -jobname thesis '\def\thesispreviewmode{}\input{thesis.tex}'
|
||||
# pdflatex -shell-escape -jobname thesis '\def\thesispreviewmode{}\input{thesis.tex}'
|
||||
# pdflatex -shell-escape -jobname thesis '\def\thesispreviewmode{}\input{thesis.tex}'
|
||||
|
||||
version.tex: thesis.tex $(addsuffix /chapter.tex,${CHAPTERS})
|
||||
echo "${VERSION_STRING}" > $@
|
||||
|
|
@ -41,7 +43,7 @@ update-figures:
|
|||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f **.aux **.bbl **.bcf **.log **.blg
|
||||
rm -f **.aux **.bbl **.bcf **.log **.blg **.lof **.lot
|
||||
rm -f **.mtc **.mtc* **.maf **.toc
|
||||
rm -f **.out **.run.xml **/texput.log
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue