blob: a1b7cee90bc2d9572042eb3c3f1abf71374c5fba (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
%
% dvidrv.mfj
%
% Declarations for automatic generation of fonts for dvidrv
%
rule = ec* tc* % EC fonts 1.0
{
name = [@f@T2.2s@F.2s];
commands = [if unknown exbase:input exbase fi; gensize:=@s; generate @f];
base = ex;
}
rule = cm* % Sauter fonts 2.4? (not yet available?)
{
name = [@f@2Ts@2Fs];
commands = [design_size:=@s; input b-@f];
base = cm;
}
rule = cm* % Sauter fonts <2.4?
{
name = [@f@s];
name_size = [@f14] 14.4;
name_size = [@f17] 17.28;
commands = [design_size:=@s; input b-@f];
base = cm;
}
rule = lh* ll* wn* kc* wc* % LH Cyrillic fonts -- CM based fonts
{
name = [@f@s];
name_size = [@f17] 17.28;
commands = [input fikparm;];
base = cm;
}
rule = rx* la* lb* lc* % LH Cyrillic fonts -- EC based fonts
{
name = [@f@T2.2s@F.2s];
commands = [input fikparm;];
}
rule = * % All other fonts
{
skip;
}
|