Add makefile

This commit is contained in:
MTRNord 2023-01-23 22:23:43 +01:00
parent 353efd3085
commit 3fb7eed6e8
No known key found for this signature in database
7 changed files with 22 additions and 2 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
LANGUAGES = german english
.PHONY: all clean
all:
for lang in $(LANGUAGES); do \
pushd $$lang; \
tectonic -X build; \
popd; \
mkdir -p output; \
cp $$lang/build/default/default.pdf output/Flyer_$$lang.pdf; \
done
for lang in $(LANGUAGES); do \
rm -r $$lang/build/; \
done
clean:
rm -r output

Binary file not shown.

View File

@ -5,7 +5,8 @@
\setitemize{topsep=0pt,parsep=0pt}
\usepackage{hyperref}
\usepackage{fontspec}
\usepackage{newtxtext,newtxmath}
\usepackage[libertine,cmintegrals,cmbraces,vvarbb]{newtxmath}
\usepackage[scaled=0.95]{zi4}
\usepackage{parskip}
\setlength{\parindent}{0pt}

Binary file not shown.

View File

@ -5,7 +5,8 @@
\setitemize{topsep=0pt,parsep=0pt}
\usepackage{hyperref}
\usepackage{fontspec}
\usepackage{newtxtext,newtxmath}
\usepackage[libertine,cmintegrals,cmbraces,vvarbb]{newtxmath}
\usepackage[scaled=0.95]{zi4}
\usepackage{parskip}
\setlength{\parindent}{0pt}

BIN
output/Flyer_english.pdf Normal file

Binary file not shown.

BIN
output/Flyer_german.pdf Normal file

Binary file not shown.