convert puml files to pdf

This commit is contained in:
Andreas Zweili 2018-10-13 18:13:56 +02:00
parent 25790f36a0
commit e2b196f096
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ SVG_PDF=$(FIGURES_SVG:.svg=.pdf)
EPS_PDF=$(FIGURES_EPS:.eps=.pdf)
DOT_PDF=$(FIGURES_DOT:.dot=.pdf)
TEX_PDF=$(FIGURES_TEX:.tex=.pdf)
PUML_PDF=$(FIGURES_PUML:.puml=.svg)
PUML_PDF=$(FIGURES_PUML:.puml=.pdf)
.PHONY: $(PAPER).pdf all clean
@ -62,5 +62,5 @@ $(PROJECT_ROOT)/pictures/%.pdf: pictures/%.tex ## Figures for the manuscript
latexmk -quiet -pdf -outdir=$(PROJECT_ROOT)/pictures \
-pdflatex="pdflatex -interaction=nonstopmode" -use-make $<
$(PROJECT_ROOT)/pictures/%.svg: pictures/%.puml
java -jar ~/bin/plantuml.jar -tsvg $(PROJECT_ROOT)/$<
$(PROJECT_ROOT)/pictures/%.pdf: pictures/%.puml
java -jar ~/bin/plantuml.jar -pdf $(PROJECT_ROOT)/$<