1
0
Fork 0

Add automatic verapdf checking

This requires the correct version (v1.16.1) of VeraPDF installed, and
then automatically produces the report.

The current version of VeraPDF is not compatible with the profile. I
have no idea why, but it crashes…
master
LEdoian 1 year ago
parent f08577e6e4
commit 9f386ca280

1
en/.gitignore vendored

@ -0,0 +1 @@
verapdf_report.xml

@ -1,6 +1,6 @@
export TEXINPUTS=../tex//: export TEXINPUTS=../tex//:
all: thesis.pdf abstract.pdf all: thesis.pdf abstract.pdf verapdf_report.xml
# LaTeX must be run multiple times to get references right # LaTeX must be run multiple times to get references right
thesis.pdf: thesis.tex $(wildcard *.tex) bibliography.bib thesis.xmpdata thesis.pdf: thesis.tex $(wildcard *.tex) bibliography.bib thesis.xmpdata
@ -12,6 +12,9 @@ thesis.pdf: thesis.tex $(wildcard *.tex) bibliography.bib thesis.xmpdata
abstract.pdf: abstract.tex abstract.xmpdata abstract.pdf: abstract.tex abstract.xmpdata
pdflatex $< pdflatex $<
verapdf_report.xml: thesis.pdf abstract.pdf verapdf_profile_UK7987v1c8.xml
verapdf --profile verapdf_profile_UK7987v1c8.xml thesis.pdf abstract.pdf >$@
clean: clean:
rm -f *.log *.dvi *.aux *.toc *.lof *.lot *.out *.bbl *.blg *.xmpi rm -f *.log *.dvi *.aux *.toc *.lof *.lot *.out *.bbl *.blg *.xmpi
rm -f thesis.pdf abstract.pdf rm -f thesis.pdf abstract.pdf

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save