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
161
162
163
164
165
166
167
168
169
|
%D \module
%D [ file=s-fnt-01,
%D version=2006.10.10, % guess
%D title=\CONTEXT\ Style File,
%D subtitle=Listing Glyphs in Large Fonts,
%D author=Hans Hagen,
%D date=\currentdate,
%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
% sort of obsolete
\startluacode
local fontdata = fonts.hashes.identifiers
-- function fonts.tracers.show_all()
-- local tfmdata = fontdata[font.current()]
-- if tfmdata and tfmdata.shared then
-- local NC, NR, char = context.NC, context.NR, context.char
-- context.starttabulate { "|l|r|c|" }
-- for unicode, description in fonts.iterators.characters(tfmdata) do
-- NC() context(description.name) NC() context(unicode) NC() char(unicode) NC() NR()
-- end
-- context.stoptabulate()
-- end
-- end
local context = context
local escaped = context.escaped
function fonts.tracers.show_all()
local tfmdata = fontdata[font.current()]
if tfmdata then
local NC, NR, HL, char, bold, tttf = context.NC, context.NR, context.HL, context.char, context.bold, context.tttf
local descriptions = tfmdata.descriptions or { }
local data = characters.data
-- context.setuptabulate { header = "repeat" }
context.starttabulatehead()
NC() bold("unicode")
NC() bold("visual")
NC() bold("index")
NC() bold("glyph")
NC() bold("adobe")
NC() bold("context")
NC() NR()
context.stoptabulatehead()
context.starttabulate { "|l|c|l|p|p|p|" }
for unicode, chr in fonts.iterators.characters(tfmdata) do
local des, dat = descriptions[unicode], data[unicode]
local index = chr.index or 0
local cname = (dat and dat.contextname) or ""
local aname = (dat and dat.adobename) or ""
local gname = (des and des.name) or ""
local mname = dat and dat.mathname
if type(mname) ~= "string" then
mname = ""
end
local mspec = dat and dat.mathspec
if mspec then
for m=1,#mspec do
local n = mspec[m].name
if n then
if mname == "" then
mname = n
else
mname = mname .. " " .. n
end
end
end
end
if mname ~= "" then
mname = "m: " .. mname
if cname ~= "" then
cname = cname .. " " .. mname
else
cname = mname
end
end
NC() tttf() context("U+%05X",unicode)
NC() char(unicode)
NC() tttf() context("%05X",index)
NC() if gname ~= "" then tttf() escaped(gname) end
NC() if aname ~= "" then tttf() context(aname) end
NC() if cname ~= "" then tttf() context(cname) end
NC() NR()
end
context.stoptabulate()
else
context("problems")
end
end
function fonts.tracers.show_glyphs()
local tfmdata = fontdata[font.current()]
if tfmdata then
for unicode, chr in fonts.iterators.characters(tfmdata) do
context.showglyph(unicode)
end
end
end
\stopluacode
\unexpanded\def\ShowCompleteFont#1#2#3%
{\bgroup
\page
\font\TestFont=#1 at #2
\setuplayout[style=\TestFont]
\setupheadertexts[]
\setupfootertexts[#1 -- \pagenumber]
\setupfootertexts[pagenumber]
\setuplayout[width=middle,height=middle,topspace=1cm,backspace=1cm]
\TestFont
\nonknuthmode
\startcolumns[n=#3]
\TestFont
\ctxlua { fonts.tracers.show_all() }
\stopcolumns
\page
\egroup}
\unexpanded\def\ShowAllGlyphs#1#2#3%
{\bgroup
\page
\def\showglyph##1{\dontleavehmode\strut\char##1\relax\par}
\font\TestFontA=#1 at 12pt
\font\TestFontB=#1 at #2
\setuplayout[style=\TestFontA]
\setupheadertexts[]
\setupfootertexts[#1\space\endash\space\pagenumber]
\setuplayout[width=middle,height=middle,topspace=1cm,backspace=1cm,header=1cm,footer=2cm]
\TestFontB \setupinterlinespace[line=1.2\dimexpr#2\relax] \raggedcenter
\nonknuthmode
\startcolumns[n=#3]
\TestFontB
\ctxlua { fonts.tracers.show_glyphs() }
\stopcolumns
\page
\egroup}
\continueifinputfile{s-fnt-10.mkiv}
\starttext
% \ShowCompleteFont{name:dejavusansmono}{10pt}{1}
% \ShowCompleteFont{name:dejavuserif}{10pt}{2}
% \ShowCompleteFont{name:officinasansbookitcregular}{10pt}{2}
% \ShowCompleteFont{name:officinaserifbookitcregular}{10pt}{2}
% \ShowCompleteFont{name:serpentineserifeflight}{10pt}{2}
\ShowCompleteFont{name:lmroman10-regular}{10pt}{1}
% \ShowCompleteFont{name:lmtypewriter10-regular}{10pt}{2}
% \ShowCompleteFont{lt55485}{10pt}{2}
% \ShowCompleteFont{lmr10}{10pt}{2}
% \ShowCompleteFont{lbr}{10pt}{2}
% \ShowCompleteFont{name:Cambria}{10pt}{2}
% \ShowCompleteFont{name:CambriaMath}{10pt}{2}
% \ShowCompleteFont{name:texgyrepagella-regular}{10pt}{2}
% \ShowCompleteFont{name:texgyrechorus-mediumitalic}{10pt}{2}
% \ShowAllGlyphs {name:texgyrepagella-regular} {48pt}{2}
% \ShowAllGlyphs {name:texgyrechorus-mediumitalic}{48pt}{2}
% \ShowCompleteFont{name:euler10-regular}{10pt}{2}
% \ShowCompleteFont{name:palatinosansinformalcombold}{20pt}{2}
% \ShowCompleteFont{name:palatinonovaregular}{11pt}{2}
% \ShowCompleteFont{pirat.ttf}{12pt}{1}
\stoptext
|