diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2021-07-12 11:20:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 11:20:28 +0200 |
commit | 6d1824c7a285e8f12ce08d9b0c45e73f5621afec (patch) | |
tree | 02ce1b49c5652e851647567aa31e5dc095d07988 /buch/papers/punktgruppen/Makefile | |
parent | Titel für Arbeit über Punktgruppen (diff) | |
parent | Merge remote-tracking branch 'upstream/master' (diff) | |
download | SeminarMatrizen-6d1824c7a285e8f12ce08d9b0c45e73f5621afec.tar.gz SeminarMatrizen-6d1824c7a285e8f12ce08d9b0c45e73f5621afec.zip |
Merge pull request #29 from NaoPross/master
Add figures and new text on crystals and piezoelectricity
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; |