diff options
author | michael-OST <75078383+michael-OST@users.noreply.github.com> | 2021-07-14 17:02:04 +0200 |
---|---|---|
committer | michael-OST <75078383+michael-OST@users.noreply.github.com> | 2021-07-14 17:02:04 +0200 |
commit | 6a001bdeac9a2a6794c42dbf8e8b87a90bd7c19e (patch) | |
tree | 78d122b6874d4e77fd499a1793e0a9951b5e6081 /buch/papers/punktgruppen/Makefile | |
parent | various chapters updated, zusammenfassung filld with content (diff) | |
parent | Name angepasst (diff) | |
download | SeminarMatrizen-6a001bdeac9a2a6794c42dbf8e8b87a90bd7c19e.tar.gz SeminarMatrizen-6a001bdeac9a2a6794c42dbf8e8b87a90bd7c19e.zip |
Merge branch 'master' of https://github.com/michael-OST/SeminarMatrizen
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; |