blob: 9c95a83fece8ac477adc10603b20927a0c72f850 (
plain)
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
|
mode_setup;
font_setup;
if not boolean barebones:
readfrom("upper");
readfrom("graccent");
fi
readfrom("lower");
if not boolean barebones:
readfrom("digits");
readfrom("grpunct");
fi
readfrom("lig");
font_slant slant; font_x_height x_height#;
if monospace: font_normal_space 9u#; % no stretching or shrinking
font_quad 18u#;
font_extra_space 9u#;
else: font_normal_space 6u#+2letter_fit#;
font_normal_stretch 3u#; font_normal_shrink 2u#;
font_quad 18u#+4letter_fit#;
font_extra_space 2u#;
fi
bye.
|