1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
if not modules then modules = { } end modules ['mlib-int'] = {
version = 1.001,
comment = "companion to mlib-ctx.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files",
}
local factor = number.dimenfactors.bp
local mpprint = mp.print
----- mpboolean = mp.boolean
----- mpquoted = mp.quoted
local getdimen = tex.getdimen
local getcount = tex.getcount
local get = tex.get
local mpcolor = attributes.colors.mpcolor
local emwidths = fonts.hashes.emwidths
local exheights = fonts.hashes.exheights
local mpgetdimen = mp.getdimen
function mp.PaperHeight () mpprint(getdimen("paperheight") *factor) end
function mp.PaperWidth () mpprint(getdimen("paperwidth") *factor) end
function mp.PrintPaperHeight () mpprint(getdimen("printpaperheight") *factor) end
function mp.PrintPaperWidth () mpprint(getdimen("printpaperwidth") *factor) end
function mp.TopSpace () mpprint(getdimen("topspace") *factor) end
function mp.BottomSpace () mpprint(getdimen("bottomspace") *factor) end
function mp.BackSpace () mpprint(getdimen("backspace") *factor) end
function mp.CutSpace () mpprint(getdimen("cutspace") *factor) end
function mp.MakeupHeight () mpprint(getdimen("makeupheight") *factor) end
function mp.MakeupWidth () mpprint(getdimen("makeupwidth") *factor) end
function mp.TopHeight () mpprint(getdimen("topheight") *factor) end
function mp.TopDistance () mpprint(getdimen("topdistance") *factor) end
function mp.HeaderHeight () mpprint(getdimen("headerheight") *factor) end
function mp.HeaderDistance () mpprint(getdimen("headerdistance") *factor) end
function mp.TextHeight () mpprint(getdimen("textheight") *factor) end
function mp.FooterDistance () mpprint(getdimen("footerdistance") *factor) end
function mp.FooterHeight () mpprint(getdimen("footerheight") *factor) end
function mp.BottomDistance () mpprint(getdimen("bottomdistance") *factor) end
function mp.BottomHeight () mpprint(getdimen("bottomheight") *factor) end
function mp.LeftEdgeWidth () mpprint(getdimen("leftedgewidth") *factor) end
function mp.LeftEdgeDistance () mpprint(getdimen("leftedgedistance") *factor) end
function mp.LeftMarginWidth () mpprint(getdimen("leftmarginwidth") *factor) end
function mp.LeftMarginDistance () mpprint(getdimen("leftmargindistance") *factor) end
function mp.TextWidth () mpprint(getdimen("textwidth") *factor) end
function mp.RightMarginDistance () mpprint(getdimen("rightmargindistance") *factor) end
function mp.RightMarginWidth () mpprint(getdimen("rightmarginwidth") *factor) end
function mp.RightEdgeDistance () mpprint(getdimen("rightedgedistance") *factor) end
function mp.RightEdgeWidth () mpprint(getdimen("rightedgewidth") *factor) end
function mp.InnerMarginDistance () mpprint(getdimen("innermargindistance") *factor) end
function mp.InnerMarginWidth () mpprint(getdimen("innermarginwidth") *factor) end
function mp.OuterMarginDistance () mpprint(getdimen("outermargindistance") *factor) end
function mp.OuterMarginWidth () mpprint(getdimen("outermarginwidth") *factor) end
function mp.InnerEdgeDistance () mpprint(getdimen("inneredgedistance") *factor) end
function mp.InnerEdgeWidth () mpprint(getdimen("inneredgewidth") *factor) end
function mp.OuterEdgeDistance () mpprint(getdimen("outeredgedistance") *factor) end
function mp.OuterEdgeWidth () mpprint(getdimen("outeredgewidth") *factor) end
function mp.PageOffset () mpprint(getdimen("pagebackgroundoffset")*factor) end
function mp.PageDepth () mpprint(getdimen("pagebackgrounddepth") *factor) end
function mp.LayoutColumns () mpprint(getcount("layoutcolumns")) end
function mp.LayoutColumnDistance() mpprint(getdimen("layoutcolumndistance")*factor) end
function mp.LayoutColumnWidth () mpprint(getdimen("layoutcolumnwidth") *factor) end
function mp.SpineWidth () mpprint(getdimen("spinewidth") *factor) end
function mp.PaperBleed () mpprint(getdimen("paperbleed") *factor) end
function mp.RealPageNumber () mpprint(getcount("realpageno")) end
function mp.LastPageNumber () mpprint(getcount("lastpageno")) end
function mp.PageNumber () mpprint(getcount("pageno")) end
function mp.NOfPages () mpprint(getcount("lastpageno")) end
function mp.SubPageNumber () mpprint(getcount("subpageno")) end
function mp.NOfSubPages () mpprint(getcount("lastsubpageno")) end
function mp.CurrentColumn () mpprint(getcount("mofcolumns")) end
function mp.NOfColumns () mpprint(getcount("nofcolumns")) end
function mp.BaseLineSkip () mpprint(get ("baselineskip",true) *factor) end
function mp.LineHeight () mpprint(getdimen("lineheight") *factor) end
function mp.BodyFontSize () mpprint(getdimen("bodyfontsize") *factor) end
function mp.TopSkip () mpprint(get ("topskip",true) *factor) end
function mp.StrutHeight () mpprint(getdimen("strutht") *factor) end
function mp.StrutDepth () mpprint(getdimen("strutdp") *factor) end
function mp.PageNumber () mpprint(getcount("pageno")) end
function mp.RealPageNumber () mpprint(getcount("realpageno")) end
function mp.NOfPages () mpprint(getcount("lastpageno")) end
function mp.CurrentWidth () mpprint(get ("hsize") *factor) end
function mp.CurrentHeight () mpprint(get ("vsize") *factor) end
function mp.EmWidth () mpprint(emwidths [false]*factor) end
function mp.ExHeight () mpprint(exheights[false]*factor) end
mp.HSize = mp.CurrentWidth
mp.VSize = mp.CurrentHeight
mp.LastPageNumber = mp.NOfPages
function mp.PageFraction ()
local lastpage = getcount("lastpageno")
if lastpage > 1 then
mpprint((getcount("realpageno")-1)/(lastpage-1))
else
mpprint(1)
end
end
-- locals
local on_right = structures.pages.on_right
local is_odd = structures.pages.is_odd
local in_body = structures.pages.in_body
mp.OnRightPage = function() mpprint(on_right()) end -- needs checking
mp.OnOddPage = function() mpprint(is_odd ()) end -- needs checking
mp.InPageBody = function() mpprint(in_body ()) end -- needs checking
-- mp.CurrentLayout : \currentlayout
function mp.OverlayWidth () mpprint(getdimen("d_overlay_width") *factor) end
function mp.OverlayHeight () mpprint(getdimen("d_overlay_height") *factor) end
function mp.OverlayDepth () mpprint(getdimen("d_overlay_depth") *factor) end
function mp.OverlayLineWidth () mpprint(getdimen("d_overlay_linewidth")*factor) end
function mp.OverlayOffset () mpprint(getdimen("d_overlay_offset") *factor) end
function mp.defaultcolormodel()
local colormethod = getcount("MPcolormethod")
-- if colormethod == 0 then
-- return 1
-- elseif colormethod == 1 then
-- return 1
-- elseif colormethod == 2 then
-- return 3
-- else
-- return 3
-- end
return (colormethod == 0 or colormethod == 1) and 1 or 3
end
-- not much difference (10000 calls in a graphic neither as expansion seems to win
-- over defining the macro etc) so let's not waste counters then
-- function mp.OverlayColor()
-- local c = mpcolor(
-- getcount("c_overlay_colormodel"),
-- getcount("c_overlay_color"),
-- getcount("c_overlay_transparency")
-- )
-- mpquoted(c)
-- end
--
-- function mp.OverlayLineColor()
-- local c = mpcolor(
-- getcount("c_overlay_colormodel"),
-- getcount("c_overlay_linecolor"),
-- getcount("c_overlay_linetransparency")
-- )
-- mpquoted(c)
-- end
|