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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
% extextit.mf
%
% (c) Copyright 1995, 1996, 1997 J"org Knappen
% (c) Copyright 1990, 1992 Norbert Schwarz
%
% This file is part of ecfonts version 1.0
%
% Please read the files 00readme.txt, 00inst.txt, 00error.txt, and
% copyrite.txt for further information
%
% You find some documentation in ecdoc.tex (needs LaTeX2e)
%
% Content:
%
% driver file, called by parameter files with italic style fonts
%
% dx r l west
% i u east
% : : :
% : : west '3xx / east '2xx
% : uppercase/lowercase
% roman / italic
version_check(1,0); % |version_check| was introduced in dc1.3
input exaccess; % accessories for polish special letters
input expseudo; % pseudoparameters
mode_setup; font_setup; pseudo_setup;
input exileast; %
input exilwest; %
input exruwest; % identical in ecroman
input exrueast; % identical in ecroman
%
input exbraces;
input expunct; %
input exaccent; %
input exsign; % zero for mille, " # $ % @ pound sign
input exilig; % dotless i,j; letter ligatures ff fi fl ffi ffl
%
input exitalp; % $ ? # &
%
input exrulett; % upper case (majuscules)
input exillett; % lower case (minuscules)
input exidigit; % digits
%
% Fontparameter
%
font_coding_scheme:="Extended TeX Font Encoding - Latin";
boundarychar:=oct"027";
font_slant slant;
font_x_height x_height#;
font_cap_height cap_height#;
font_asc_height asc_height#;
font_acc_cap_height (cap_height#+acc_height#);
font_desc_depth desc_depth#;
font_max_height (max(asc_height#,body_height#,
cap_height#+acc_height#));
font_max_depth (max(desc_depth#,paren_depth#,the_ogonek_depth#));
% font_digit_width % set inside the digits file
% font_cap_stem % set after the programme of the capital I
font_baselineskip max(1.2*designsize,body_height#+paren_depth#);
if monospace: font_normal_space 9u#; % no stretching or shrinking
font_quad 18u#;
font_extra_space 9u#;
letter_fit#:=letter_fit:=0;
input exmligtb; % do the ligature programmes for monospaced fonts
else: font_normal_space 6u#+2letter_fit#;
font_normal_stretch 3u#; font_normal_shrink 2u#;
font_quad 18u#+4letter_fit#;
font_extra_space 2u#;
input exiligtb; % do the ligature programmes for proportionally spaced fonts
fi
bye.
|