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
|
local kern_200 = { bottomright = { { kern = -200 } } }
local kern_100 = { bottomright = { { kern = -100 } } }
-- Beware of updates !
return {
name = "pagella-math",
version = "1.00",
comment = "Goodies that complement pagella.",
author = "Hans Hagen",
copyright = "ConTeXt development team",
mathematics = {
dimensions = {
default = {
-- [0x1D453] = { xoffset = 162, width = 278 + 162 },-- 𝑓
[0x1D453] = { xoffset = "llx" },-- 𝑓
},
},
kerns = {
[0x1D449] = kern_200, -- 𝑉
[0x1D44A] = kern_100, -- 𝑊
},
alternates = {
dotless = { feature = 'dtls', value = 1, comment = "Mathematical Dotless Forms" },
},
},
}
|