1
2
3\usemodule[art01] \dontcomplain
4
5\starttexdefinition unexpanded TestFont #font#variant#size
6 \bgroup
7 \definedfont[name:#font#variant*default @ #size]
8 \setupinterlinespace
9
10
11 \samplefile{tufte}
12 \par
13 \egroup
14\stoptexdefinition
15
16\starttext
17
18\dorecurse {5} {
19
20 \dostepwiserecurse {8} {14} {1} {
21 \TestFont {adobevariablefontprototype} {extralight} {##1pt}
22 \TestFont {adobevariablefontprototype} {light} {##1pt}
23 \TestFont {adobevariablefontprototype} {regular} {##1pt}
24 \TestFont {adobevariablefontprototype} {semibold} {##1pt}
25 \TestFont {adobevariablefontprototype} {bold} {##1pt}
26 \TestFont {adobevariablefontprototype} {black} {##1pt}
27 }
28
29 \page
30
31
32
33
34
35
36
37
38
39
40
41
42}
43
44\stoptext
45 |