1
0

Update on Overleaf.

This commit is contained in:
2023-02-22 19:00:30 +00:00
committed by node
commit c5e0a01713
133 changed files with 24196 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#!/usr/bin/make
all: $(patsubst %.tex,%.svg,$(wildcard *.tex))
%.svg: %.pdf
/usr/bin/inkscape $< --export-plain-svg=$@
%.pdf: %.tex
latexmk -f -pdf $<
clean:
latexmk -C *.tex
rm -f *.tmp
rm -f vc
rm *.svg
viewpdf: all
evince *.pdf
vc:
vc-git
pdf: all
.PHONY: clean all