diff options
author | Lukaszogg <82384106+Lukaszogg@users.noreply.github.com> | 2021-07-17 16:03:21 +0200 |
---|---|---|
committer | Lukaszogg <82384106+Lukaszogg@users.noreply.github.com> | 2021-07-17 16:03:21 +0200 |
commit | f4e4cd2fd6afeab395a63db5401e68a1b379eee8 (patch) | |
tree | cb7be6b76ce1ec7ec3821b3bd61b85d65f0a2fa5 /buch/papers/punktgruppen/Makefile | |
parent | Teil1+Teil0 (diff) | |
parent | Merge pull request #37 from JODBaer/Baer (diff) | |
download | SeminarMatrizen-f4e4cd2fd6afeab395a63db5401e68a1b379eee8.tar.gz SeminarMatrizen-f4e4cd2fd6afeab395a63db5401e68a1b379eee8.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'buch/papers/punktgruppen/Makefile')
-rw-r--r-- | buch/papers/punktgruppen/Makefile | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/buch/papers/punktgruppen/Makefile b/buch/papers/punktgruppen/Makefile index 0274594..f92dc95 100644 --- a/buch/papers/punktgruppen/Makefile +++ b/buch/papers/punktgruppen/Makefile @@ -3,7 +3,39 @@ # # (c) 2020 Prof Dr Andreas Mueller # +SOURCES := \ + crystals.tex \ + intro.tex \ + main.tex \ + piezo.tex \ + symmetry.tex -images: - @echo "no images to be created in punktgruppen" +TIKZFIGURES := \ + tikz/combine-symmetries.tex \ + tikz/lattice.tex \ + tikz/piezo-atoms.tex \ + tikz/piezo.tex \ + tikz/projections.tex \ + tikz/symmetric-shapes.tex +FIGURES := $(patsubst tikz/%.tex, figures/%.pdf, $(TIKZFIGURES)) + +.PHONY: images +images: $(FIGURES) + +figures/%.pdf: tikz/%.tex + mkdir -p figures + pdflatex --output-directory=figures $< + +.PHONY: standalone +standalone: standalone.tex $(SOURCES) + mkdir -p standalone + cd ../..; \ + pdflatex \ + --halt-on-error \ + --shell-escape \ + --output-directory=papers/punktgruppen/standalone \ + papers/punktgruppen/standalone.tex; + cd standalone; \ + bibtex standalone; \ + makeindex standalone; |