diff options
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | conf/settings/hex-paper/12mm.yaml | 8 | ||||
-rw-r--r-- | conf/settings/hex-paper/25mm.yaml | 8 | ||||
-rw-r--r-- | conf/settings/hex-paper/4mm.yaml | 8 | ||||
-rw-r--r-- | designs/hex-paper-12mm-a4.yaml | 8 | ||||
-rw-r--r-- | designs/hex-paper-24mm-a3.yaml | 8 | ||||
-rw-r--r-- | designs/hex-paper-24mm-a4.yaml | 8 | ||||
-rw-r--r-- | designs/hex-paper-4mm-a4.yaml | 8 |
8 files changed, 60 insertions, 1 deletions
@@ -16,8 +16,11 @@ $(BUILDDIR)/%.ps: designs/%.yaml mkdir -p ${BUILDDIR} ./bin/render -o $@ $< +$(BUILDDIR)/%-a3.pdf: ${BUILDDIR}/%-a3.ps + ps2pdf -sPAPERSIZE=a3 $< $@ + $(BUILDDIR)/%-a4.pdf: ${BUILDDIR}/%-a4.ps - ps2pdf $< $@ + ps2pdf -sPAPERSIZE=a4 $< $@ $(BUILDDIR)/%-a5.pdf: ${BUILDDIR}/%-a5.ps ps2pdf -sPAPERSIZE=a5 $< $@ diff --git a/conf/settings/hex-paper/12mm.yaml b/conf/settings/hex-paper/12mm.yaml new file mode 100644 index 0000000..f165cb8 --- /dev/null +++ b/conf/settings/hex-paper/12mm.yaml @@ -0,0 +1,8 @@ +hex_side: 12 mm + +x_spacing: 0 +y_spacing: 0 +uniform_spacing: true + +x_trasl: 0 mm +y_trasl: 0 mm diff --git a/conf/settings/hex-paper/25mm.yaml b/conf/settings/hex-paper/25mm.yaml new file mode 100644 index 0000000..6dce40a --- /dev/null +++ b/conf/settings/hex-paper/25mm.yaml @@ -0,0 +1,8 @@ +hex_side: 25 mm + +x_spacing: 0 +y_spacing: 0 +uniform_spacing: true + +x_trasl: 0 mm +y_trasl: 0 mm diff --git a/conf/settings/hex-paper/4mm.yaml b/conf/settings/hex-paper/4mm.yaml new file mode 100644 index 0000000..9d63eca --- /dev/null +++ b/conf/settings/hex-paper/4mm.yaml @@ -0,0 +1,8 @@ +hex_side: 4 mm + +x_spacing: 0 +y_spacing: 0 +uniform_spacing: true + +x_trasl: 0 mm +y_trasl: 0 mm diff --git a/designs/hex-paper-12mm-a4.yaml b/designs/hex-paper-12mm-a4.yaml new file mode 100644 index 0000000..9e552ef --- /dev/null +++ b/designs/hex-paper-12mm-a4.yaml @@ -0,0 +1,8 @@ +template: hex-paper +paper: a4 +margins: 10mm +theme: thin_lines +settings: 12mm +override: + x_trasl: '0 mm' + y_trasl: '1.5 mm neg' diff --git a/designs/hex-paper-24mm-a3.yaml b/designs/hex-paper-24mm-a3.yaml new file mode 100644 index 0000000..2637106 --- /dev/null +++ b/designs/hex-paper-24mm-a3.yaml @@ -0,0 +1,8 @@ +template: hex-paper +paper: a3 +margins: 10mm +theme: thin_lines +settings: 25mm +override: + x_trasl: '11 mm neg' + y_trasl: '3 mm neg' diff --git a/designs/hex-paper-24mm-a4.yaml b/designs/hex-paper-24mm-a4.yaml new file mode 100644 index 0000000..d0bb38f --- /dev/null +++ b/designs/hex-paper-24mm-a4.yaml @@ -0,0 +1,8 @@ +template: hex-paper +paper: a4 +margins: 10mm +theme: thin_lines +settings: 25mm +override: + x_trasl: '0 mm' + y_trasl: '0 mm' diff --git a/designs/hex-paper-4mm-a4.yaml b/designs/hex-paper-4mm-a4.yaml new file mode 100644 index 0000000..0eaa0a3 --- /dev/null +++ b/designs/hex-paper-4mm-a4.yaml @@ -0,0 +1,8 @@ +template: hex-paper +paper: a4 +margins: 10mm +theme: thin_lines +settings: 4mm +override: + x_trasl: '0 mm' + y_trasl: '0 mm' |