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
|
local kern_100 = { bottomright = { { kern = -100 } } }
local kern_150 = { bottomright = { { kern = -150 } } }
local kern_200 = { bottomright = { { kern = -200 } } }
return {
name = "minion-math",
version = "1.00",
comment = "Goodies that complement minion math.",
author = "Hans Hagen",
copyright = "ConTeXt development team",
designsizes = {
["Minion-Math"] = {
["8.4pt"] = "file:MinionMath-Tiny.otf",
["9.8pt"] = "file:MinionMath-Capt.otf",
default = "file:MinionMath-Regular.otf",
},
["Minion-BoldMath"] = {
default = "file:MinionMath-Semibold.otf",
},
["Minion-MediumMath"] = {
default = "file:MinionMath-Semibold.otf",
},
},
mathematics = {
kerns = {
[0x1D449] = kern_200, -- 𝑉
[0x1D44A] = kern_150, -- 𝑊
},
},
}
|