diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-06-22 18:01:31 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-06-22 18:01:31 +0200 |
commit | fc3c13e1ea55859de112a900a8fa99d2dc1417c6 (patch) | |
tree | 9f281b41d1dd3b854b6f60b135bb0e5153395f82 /conf/paper | |
parent | d53fb5574b34c011e9bc994c4e044a45e065b44f (diff) |
Start converting ps file to jinja2 template
Diffstat (limited to 'conf/paper')
-rw-r--r-- | conf/paper/a3.yaml | 4 | ||||
-rw-r--r-- | conf/paper/a4-landscape.yaml | 4 | ||||
-rw-r--r-- | conf/paper/a4.yaml | 4 | ||||
-rw-r--r-- | conf/paper/letter.yaml | 4 |
4 files changed, 16 insertions, 0 deletions
diff --git a/conf/paper/a3.yaml b/conf/paper/a3.yaml new file mode 100644 index 0000000..005f46e --- /dev/null +++ b/conf/paper/a3.yaml @@ -0,0 +1,4 @@ +bounding_box: '0 0 842 1192' +paper_name: 'a3' +page_width: '297 mm' +page_height: '420 mm' diff --git a/conf/paper/a4-landscape.yaml b/conf/paper/a4-landscape.yaml new file mode 100644 index 0000000..1d81f25 --- /dev/null +++ b/conf/paper/a4-landscape.yaml @@ -0,0 +1,4 @@ +bounding_box: '0 0 842 596' +paper_name: 'a4' +page_width: '297 mm' +page_height: '210 mm' diff --git a/conf/paper/a4.yaml b/conf/paper/a4.yaml new file mode 100644 index 0000000..46b071e --- /dev/null +++ b/conf/paper/a4.yaml @@ -0,0 +1,4 @@ +bounding_box: '0 0 596 842' +paper_name: 'a4' +page_width: '210 mm' +page_height: '297 mm' diff --git a/conf/paper/letter.yaml b/conf/paper/letter.yaml new file mode 100644 index 0000000..7dae443 --- /dev/null +++ b/conf/paper/letter.yaml @@ -0,0 +1,4 @@ +bounding_box: '0 0 612 792' +paper_name: 'letter' +page_width: '8.5 inch' +page_height: '11 inch' |