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 /src/graph-paper.ps | |
parent | d53fb5574b34c011e9bc994c4e044a45e065b44f (diff) |
Start converting ps file to jinja2 template
Diffstat (limited to 'src/graph-paper.ps')
-rw-r--r-- | src/graph-paper.ps | 30 |
1 files changed, 11 insertions, 19 deletions
diff --git a/src/graph-paper.ps b/src/graph-paper.ps index c32b9c6..3383341 100644 --- a/src/graph-paper.ps +++ b/src/graph-paper.ps @@ -1,8 +1,8 @@ %!PS-Adobe-1.0 %%Title: graph-paper - part of rpgTools by Elena of Valhalla %%Pages:1 -%%BoundingBox: 0 0 596 842 -%%DocumentPaperSizes: a4 +%%BoundingBox: {{ bounding_box }} +%%DocumentPaperSizes: {{ paper_name }} %%CreationDate: 2004/10/19 %%DocumentData: Clean7Bit %%LanguageLevel: 1 @@ -59,29 +59,21 @@ /SquaYStr 5 def % ver number of thin lines between strong ones % line width and color for thin lines -/LineSizeThin 0.5 def -/LineColoThin { 0.8 0.8 0.8 } def +/LineSizeThin {{ thin_line_size }} def +/LineColoThin {{ thin_line_color }} def % line width and color for strong lines -/LineSizeStro 0.5 def -/LineColoStro { 0.6 0.6 0.6 } def +/LineSizeStro {{ heavy_line_size }} def +/LineColoStro {{ heavy_line_color }} def % line width and color for border -/LineSizeBord 0.5 def -/LineColoBord { 0.6 0.6 0.6 } def +/LineSizeBord {{ border_line_size }} def +/LineColoBord {{ border_line_color }} def -/BackColo { 1.0 1.0 1.0 } def % background color +/BackColo {{ background_color }} def % background color % page size: if you change this, you should change the BoundingBox % in line 4 accordingly (you CAN'T use mm or inch over there) -% Default is A4 paper ( BoundingBox: 0 0 596 842 ) -/PageWidth 210 mm def -/PageHeight 297 mm def -% alternate page sizes (with BoundingBox values) may be -% A3 paper ( BoundingBox: 0 0 842 1192) -%/PageWidth 297 mm def -%/PageHeight 420 mm def -% Letter paper ( BoundingBox: 0 0 612 792) -%/PageWidth 8.5 inch def -%/PageHeight 11 inch def +/PageWidth {{ page_width }} def +/PageHeight {{ page_height }} def % white margins /BorderTop 10 mm def |