blob: 4d2287a2ea223588260ec435a3f087c820dc6728 (
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
|
%*****************************************************************************
% Copyright (c) 1989 by N. N. Billawala
%*****************************************************************************
% tttext.mf Typewriter Text character set
font_coding_scheme:="TeX typewriter text";
inv_exclamation:=oct"016"; inv_question_mark:=oct"017";
font_slant oblique; % TeX fontdimen 1 slant
font_normal_space mono#; % TeX fontdimen 2 normal word monospace
font_normal_stretch 0; % TeX fontdimen 3 (no interword stretch)
font_normal_shrink 0; % TeX fontdimen 4 (no interword shrink)
font_x_height xheight#; % Tex fontdimen 5 for accents
font_quad width#; % TeX fontdimen 6 quad width
font_extra_space width#; % TeX fontdimen 7 extra space(period)
input widths % reference width and fitting infor
input panlowers % (26) lowercase roman alphabet
input caps % (26) uppercase roman alphabet
input number % (10) numerals
input pangreeku % (11) uppercase greek
input panaccent % (19) accents and ligatures common in sets
input panpunct % (21) punctuation: common in all char sets
input puncts % ( 2) punctuation: Spanish inverted ?!
input punctt % ( 8) punctuation: for roman text set
input ttchar % ( 5) ligatures with "f"
ligtable "?": "`"=:inv_question_mark;
ligtable "!": "`"=:inv_exclamation;
bye
|