BSD 3 development
[unix-history] / usr / src / cmd / troff / tab3.c
CommitLineData
8f6d64d2
BJ
1#define BYTE 8
2#define PAIR(A,B) (A|(B<<BYTE))
3/*
4character name and code tables
5default width tables
6modified for BTL special font version 4
7and Commercial II
8*/
9
10int chtab [] = {
11PAIR('h','y'), 0200, /*hyphen*/
12PAIR('b','u'), 0201, /*bullet*/
13PAIR('s','q'), 0202, /*square*/
14PAIR('e','m'), 0203, /*3/4em*/
15PAIR('r','u'), 0204, /*rule*/
16PAIR('1','4'), 0205, /*1/4*/
17PAIR('1','2'), 0206, /*1/2*/
18PAIR('3','4'), 0207, /*3/4*/
19PAIR('m','i'), 0302, /*equation minus*/
20PAIR('f','i'), 0211, /*fi*/
21PAIR('f','l'), 0212, /*fl*/
22PAIR('f','f'), 0213, /*ff*/
23PAIR('F','i'), 0214, /*ffi*/
24PAIR('F','l'), 0215, /*ffl*/
25PAIR('d','e'), 0216, /*degree*/
26PAIR('d','g'), 0217, /*dagger*/
27PAIR('s','c'), 0220, /*section*/
28PAIR('f','m'), 0221, /*foot mark*/
29PAIR('a','a'), 0222, /*acute accent*/
30PAIR('g','a'), 0223, /*grave accent*/
31PAIR('u','l'), 0224, /*underrule*/
32PAIR('s','l'), 0225, /*slash (longer)*/
33PAIR('*','a'), 0230, /*alpha*/
34PAIR('*','b'), 0231, /*beta*/
35PAIR('*','g'), 0232, /*gamma*/
36PAIR('*','d'), 0233, /*delta*/
37PAIR('*','e'), 0234, /*epsilon*/
38PAIR('*','z'), 0235, /*zeta*/
39PAIR('*','y'), 0236, /*eta*/
40PAIR('*','h'), 0237, /*theta*/
41PAIR('*','i'), 0240, /*iota*/
42PAIR('*','k'), 0241, /*kappa*/
43PAIR('*','l'), 0242, /*lambda*/
44PAIR('*','m'), 0243, /*mu*/
45PAIR('*','n'), 0244, /*nu*/
46PAIR('*','c'), 0245, /*xi*/
47PAIR('*','o'), 0246, /*omicron*/
48PAIR('*','p'), 0247, /*pi*/
49PAIR('*','r'), 0250, /*rho*/
50PAIR('*','s'), 0251, /*sigma*/
51PAIR('*','t'), 0252, /*tau*/
52PAIR('*','u'), 0253, /*upsilon*/
53PAIR('*','f'), 0254, /*phi*/
54PAIR('*','x'), 0255, /*chi*/
55PAIR('*','q'), 0256, /*psi*/
56PAIR('*','w'), 0257, /*omega*/
57PAIR('*','A'), 0101, /*Alpha*/
58PAIR('*','B'), 0102, /*Beta*/
59PAIR('*','G'), 0260, /*Gamma*/
60PAIR('*','D'), 0261, /*Delta*/
61PAIR('*','E'), 0105, /*Epsilon*/
62PAIR('*','Z'), 0132, /*Zeta*/
63PAIR('*','Y'), 0110, /*Eta*/
64PAIR('*','H'), 0262, /*Theta*/
65PAIR('*','I'), 0111, /*Iota*/
66PAIR('*','K'), 0113, /*Kappa*/
67PAIR('*','L'), 0263, /*Lambda*/
68PAIR('*','M'), 0115, /*Mu*/
69PAIR('*','N'), 0116, /*Nu*/
70PAIR('*','C'), 0264, /*Xi*/
71PAIR('*','O'), 0117, /*Omicron*/
72PAIR('*','P'), 0265, /*Pi*/
73PAIR('*','R'), 0120, /*Rho*/
74PAIR('*','S'), 0266, /*Sigma*/
75PAIR('*','T'), 0124, /*Tau*/
76PAIR('*','U'), 0270, /*Upsilon*/
77PAIR('*','F'), 0271, /*Phi*/
78PAIR('*','X'), 0130, /*Chi*/
79PAIR('*','Q'), 0272, /*Psi*/
80PAIR('*','W'), 0273, /*Omega*/
81PAIR('s','r'), 0274, /*square root*/
82PAIR('t','s'), 0275, /*terminal sigma*/
83PAIR('r','n'), 0276, /*root en*/
84PAIR('>','='), 0277, /*>=*/
85PAIR('<','='), 0300, /*<=*/
86PAIR('=','='), 0301, /*identically equal*/
87PAIR('~','='), 0303, /*approx =*/
88PAIR('a','p'), 0304, /*approximates*/
89PAIR('!','='), 0305, /*not equal*/
90PAIR('-','>'), 0306, /*right arrow*/
91PAIR('<','-'), 0307, /*left arrow*/
92PAIR('u','a'), 0310, /*up arrow*/
93PAIR('d','a'), 0311, /*down arrow*/
94PAIR('e','q'), 0312, /*equation equal*/
95PAIR('m','u'), 0313, /*multiply*/
96PAIR('d','i'), 0314, /*divide*/
97PAIR('+','-'), 0315, /*plus-minus*/
98PAIR('c','u'), 0316, /*cup (union)*/
99PAIR('c','a'), 0317, /*cap (intersection)*/
100PAIR('s','b'), 0320, /*subset of*/
101PAIR('s','p'), 0321, /*superset of*/
102PAIR('i','b'), 0322, /*improper subset*/
103PAIR('i','p'), 0323, /* " superset*/
104PAIR('i','f'), 0324, /*infinity*/
105PAIR('p','d'), 0325, /*partial derivative*/
106PAIR('g','r'), 0326, /*gradient*/
107PAIR('n','o'), 0327, /*not*/
108PAIR('i','s'), 0330, /*integral sign*/
109PAIR('p','t'), 0331, /*proportional to*/
110PAIR('e','s'), 0332, /*empty set*/
111PAIR('m','o'), 0333, /*member of*/
112PAIR('p','l'), 0334, /*equation plus*/
113PAIR('r','g'), 0335, /*registered*/
114PAIR('c','o'), 0336, /*copyright*/
115PAIR('b','r'), 0337, /*box vert rule*/
116PAIR('c','t'), 0340, /*cent sign*/
117PAIR('d','d'), 0341, /*dbl dagger*/
118PAIR('r','h'), 0342, /*right hand*/
119PAIR('l','h'), 0343, /*left hand*/
120PAIR('*','*'), 0344, /*math * */
121PAIR('b','s'), 0345, /*bell system sign*/
122PAIR('o','r'), 0346, /*or*/
123PAIR('c','i'), 0347, /*circle*/
124PAIR('l','t'), 0350, /*left top (of big curly)*/
125PAIR('l','b'), 0351, /*left bottom*/
126PAIR('r','t'), 0352, /*right top*/
127PAIR('r','b'), 0353, /*right bot*/
128PAIR('l','k'), 0354, /*left center of big curly bracket*/
129PAIR('r','k'), 0355, /*right center of big curly bracket*/
130PAIR('b','v'), 0356, /*bold vertical*/
131PAIR('l','f'), 0357, /*left floor (left bot of big sq bract)*/
132PAIR('r','f'), 0360, /*right floor (rb of ")*/
133PAIR('l','c'), 0361, /*left ceiling (lt of ")*/
134PAIR('r','c'), 0362, /*right ceiling (rt of ")*/
1350,0};
136
137char codetab[256-32] = { /*cat codes*/
13800, /*space*/
1390145, /*!*/
1400230, /*"*/
1410337, /*#*/
1420155, /*$*/
143053, /*%*/
144050, /*&*/
145032, /*' close*/
1460132, /*(*/
1470133, /*)*/
1480122, /***/
1490143, /*+*/
150047, /*,*/
151040, /*- hyphen*/
152044, /*.*/
153043, /*/*/
1540110, /*0*/
1550111, /*1*/
1560112, /*2*/
1570113, /*3*/
1580114, /*4*/
1590115, /*5*/
1600116, /*6*/
1610117, /*7*/
1620120, /*8*/
1630121, /*9*/
1640142, /*:*/
165023, /*;*/
1660303, /*<*/
1670140, /*=*/
1680301, /*>*/
1690147, /*?*/
1700222, /*@*/
1710103, /*A*/
172075, /*B*/
173070, /*C*/
174074, /*D*/
175072, /*E*/
1760101, /*F*/
177065, /*G*/
178060, /*H*/
179066, /*I*/
1800105, /*J*/
1810107, /*K*/
182063, /*L*/
183062, /*M*/
184061, /*N*/
185057, /*O*/
186067, /*P*/
187055, /*Q*/
188064, /*R*/
189076, /*S*/
190056, /*T*/
1910106, /*U*/
192071, /*V*/
1930104, /*W*/
1940102, /*X*/
195077, /*Y*/
196073, /*Z*/
1970134, /*[*/
1980241, /*\*/
1990135, /*]*/
2000336, /*^*/
2010240, /*_*/
202030, /*` open*/
203025, /*a*/
204012, /*b*/
205027, /*c*/
206011, /*d*/
207031, /*e*/
208014, /*f*/
209045, /*g*/
210001, /*h*/
211006, /*i*/
212015, /*j*/
213017, /*k*/
214005, /*l*/
215004, /*m*/
216003, /*n*/
217033, /*o*/
218021, /*p*/
219042, /*q*/
220035, /*r*/
221010, /*s*/
222002, /*t*/
223016, /*u*/
224037, /*v*/
225041, /*w*/
226013, /*x*/
227051, /*y*/
228007, /*z*/
2290332, /*{*/
2300151, /*|*/
2310333, /*}*/
2320342, /*~*/
23300, /*narrow space*/
234040, /*hyphen*/
2350146, /*bullet*/
2360154, /*square*/
237022, /*3/4 em*/
238026, /*rule*/
239034, /*1/4*/
240036, /*1/2*/
241046, /*3/4*/
2420123, /*minus*/
2430124, /*fi*/
2440125, /*fl*/
2450126, /*ff*/
2460131, /*ffi*/
2470130, /*ffl*/
2480136, /*degree*/
2490137, /*dagger*/
2500355, /*section*/
2510150, /*foot mark*/
2520334, /*acute accent*/
2530335, /*grave accent*/
2540240, /*underrule*/
2550304, /*slash (longer)*/
25600, /*half nar sp*/
25700, /**/
2580225, /*alpha*/
2590212, /*beta*/
2600245, /*gamma*/
2610211, /*delta*/
2620231, /*epsilon*/
2630207, /*zeta*/
2640214, /*eta*/
2650202, /*theta*/
2660206, /*iota*/
2670217, /*kappa*/
2680205, /*lambda*/
2690204, /*mu*/
2700203, /*nu*/
2710213, /*xi*/
2720233, /*omicron*/
2730221, /*pi*/
2740235, /*rho*/
2750210, /*sigma*/
2760237, /*tau*/
2770216, /*upsilon*/
2780215, /*phi*/
2790227, /*chi*/
2800201, /*psi*/
2810251, /*omega*/
2820265, /*Gamma*/
2830274, /*Delta*/
2840256, /*Theta*/
2850263, /*Lambda*/
2860302, /*Xi*/
2870267, /*Pi*/
2880276, /*Sigma*/
28900, /**/
2900306, /*Upsilon*/
2910255, /*Phi*/
2920242, /*Psi*/
2930257, /*Omega*/
2940275, /*square root*/
2950262, /*terminal sigma (was root em)*/
2960261, /*root en*/
2970327, /*>=*/
2980326, /*<=*/
2990330, /*identically equal*/
3000264, /*equation minus*/
3010277, /*approx =*/
3020272, /*approximates*/
3030331, /*not equal*/
3040354, /*right arrow*/
3050234, /*left arrow*/
3060236, /*up arrow*/
3070223, /*down arrow*/
3080232, /*equation equal*/
3090323, /*multiply*/
3100324, /*divide*/
3110325, /*plus-minus*/
3120260, /*cup (union)*/
3130305, /*cap (intersection)*/
3140270, /*subset of*/
3150271, /*superset of*/
3160350, /*improper subset*/
3170246, /* improper superset*/
3180244, /*infinity*/
3190273, /*partial derivative*/
3200253, /*gradient*/
3210307, /*not*/
3220266, /*integral sign*/
3230247, /*proportional to*/
3240343, /*empty set*/
3250341, /*member of*/
3260353, /*equation plus*/
3270141, /*registered*/
3280153, /*copyright*/
3290346, /*box rule (was parallel sign)*/
3300127, /*cent sign*/
3310345, /*dbl dagger*/
3320250, /*right hand*/
3330340, /*left hand*/
3340347, /*math * */
3350243, /*bell system sign*/
3360226, /*or (was star)*/
3370351, /*circle*/
3380311, /*left top (of big curly)*/
3390314, /*left bottom*/
3400315, /*right top*/
3410317, /*right bot*/
3420313, /*left center of big curly bracket*/
3430316, /*right center of big curly bracket*/
3440312, /*bold vertical*/
3450321, /*left floor (left bot of big sq bract)*/
3460320, /*right floor (rb of ")*/
3470322, /*left ceiling (lt of ")*/
3480310}; /*right ceiling (rt of ")*/
349
350/*modified for Commercial II*/
351char W1[256-32] = { /*Times Roman widths*/
35212, /*space*/
35312, /*!*/
3540, /*"*/
3550, /*#*/
35619, /*$*/
35729, /*%*/
35828, /*&*/
35912, /*' close*/
36016, /*(*/
36116, /*)*/
36216, /***/
36336, /*+*/
36412, /*,*/
36513, /*- hyphen*/
36610, /*.*/
36717, /*/*/
36819+0200, /*0*/
36919+0200, /*1*/
37019+0200, /*2*/
37119+0200, /*3*/
37219+0200, /*4*/
37319+0200, /*5*/
37419+0200, /*6*/
37519+0200, /*7*/
37619+0200, /*8*/
37719+0200, /*9*/
37810, /*:*/
37912, /*;*/
3800, /*<*/
38136, /*=*/
3820, /*>*/
38320, /*?*/
3840, /*@*/
38529+0200, /*A*/
38623+0200, /*B*/
38726+0200, /*C*/
38830+0200, /*D*/
38924+0200, /*E*/
39023+0200, /*F*/
39130+0200, /*G*/
39229+0200, /*H*/
39313+0200, /*I*/
39416+0200, /*J*/
39528+0200, /*K*/
39624+0200, /*L*/
39735+0200, /*M*/
39829+0200, /*N*/
39927+0200, /*O*/
40022+0200, /*P*/
40127+0300, /*Q*/
40227+0200, /*R*/
40320+0200, /*S*/
40424+0200, /*T*/
40529+0200, /*U*/
40627+0200, /*V*/
40736+0200, /*W*/
40828+0200, /*X*/
40927+0200, /*Y*/
41023+0200, /*Z*/
41114, /*[*/
4120, /*\*/
41314, /*]*/
4140, /*^*/
4150, /*_*/
41612, /*` open*/
41717, /*a*/
41820+0200, /*b*/
41916, /*c*/
42020+0200, /*d*/
42118, /*e*/
42213+0200, /*f*/
42318+0100, /*g*/
42421+0200, /*h*/
42510+0200, /*i*/
4269+0300, /*j*/
42720+0200, /*k*/
42810+0200, /*l*/
42932, /*m*/
43021, /*n*/
43120, /*o*/
43219+0100, /*p*/
43319+0100, /*q*/
43414, /*r*/
43515, /*s*/
43612+0200, /*t*/
43721, /*u*/
43820, /*v*/
43926, /*w*/
44020, /*x*/
44118+0100, /*y*/
44217, /*z*/
4430, /*{*/
4442, /*|*/
4450, /*}*/
4460, /*~*/
4476, /*narrow space*/
44813, /*hyphen*/
44927, /*bullet*/
45027, /*square*/
45136, /*3/4 em*/
45218, /*rule*/
45329, /*1/4*/
45429, /*1/2*/
45529, /*3/4*/
45636, /*minus*/
45721, /*fi*/
45821, /*fl*/
45924, /*ff*/
46032, /*ffi*/
46132, /*ffl*/
46215, /*degree*/
46320, /*dagger*/
4640, /*section*/
4658, /*foot mark*/
4660, /*'*/
4670, /*`*/
4680, /*_*/
4690,
4703, /*half nar sp*/
4710,
4720,0,0,0,0,0,0,0,
4730,0,0,0,0,0,0,0,
4740,0,0,0,0,0,0,0,
4750,0,0,0,0,0,0,0,
4760,0,0,0,0,0,0,0,
4770,0,0,0,0,0,0,0,
4780,0,0,0,0,0,0,0,
4790,0,0,0,0,0,0,0,
4800,0,0,0,0,
48120, /*registered*/
48220, /*copyright*/
4830,
48419, /*cent*/
485};
486
487char W2[256-32] = { /*Times Italic widths*/
48812, /*space*/
48913, /*!*/
4900, /*"*/
4910, /*#*/
49219, /*$*/
49327, /*%*/
49426, /*&*/
49511, /*' close*/
49615, /*(*/
49715, /*)*/
49816, /***/
49936, /*+*/
50011, /*,*/
50113, /*- hyphen*/
50211, /*.*/
5039, /*/*/
50419+0200, /*0*/
50519+0200, /*1*/
50619+0200, /*2*/
50719+0200, /*3*/
50819+0200, /*4*/
50919+0200, /*5*/
51019+0200, /*6*/
51119+0200, /*7*/
51219+0200, /*8*/
51319+0200, /*9*/
51411, /*:*/
51511, /*;*/
5160, /*<*/
51736, /*=*/
5180, /*>*/
51920, /*?*/
5200, /*@*/
52125+0200, /*A*/
52224+0200, /*B*/
52326+0200, /*C*/
52427+0200, /*D*/
52523+0200, /*E*/
52621+0200, /*F*/
52727+0200, /*G*/
52829+0200, /*H*/
52914+0200, /*I*/
53016+0200, /*J*/
53128+0200, /*K*/
53224+0200, /*L*/
53334+0200, /*M*/
53427+0200, /*N*/
53527+0200, /*O*/
53622+0200, /*P*/
53727+0300, /*Q*/
53827+0200, /*R*/
53920+0200, /*S*/
54023+0200, /*T*/
54128+0200, /*U*/
54225+0200, /*V*/
54336+0200, /*W*/
54424+0200, /*X*/
54524+0200, /*Y*/
54625+0200, /*Z*/
54713, /*[*/
5480, /*\*/
54913, /*]*/
5500, /*^*/
5510, /*_*/
55211, /*` open*/
55319, /*a*/
55418+0200, /*b*/
55515, /*c*/
55618+0200, /*d*/
55716, /*e*/
55811+0200, /*f*/
55917+0100, /*g*/
56019+0200, /*h*/
5619+0200, /*i*/
5629+0300, /*j*/
56319+0200, /*k*/
5649+0200, /*l*/
56528, /*m*/
56619, /*n*/
56718, /*o*/
56817+0100, /*p*/
56918+0100, /*q*/
57013, /*r*/
57114, /*s*/
57210+0200, /*t*/
57319, /*u*/
57416, /*v*/
57524, /*w*/
57618, /*x*/
57716+0100, /*y*/
57814, /*z*/
5790, /*{*/
5802, /*|*/
5810, /*}*/
5820, /*~*/
5836, /*narrow space*/
58413, /*hyphen*/
58527, /*bullet*/
58627, /*square*/
58736, /*3/4 em*/
58818, /*rule*/
58927, /*1/4*/
59027, /*1/2*/
59127, /*3/4*/
59236, /*minus*/
59321, /*fi*/
59421, /*fl*/
59521, /*ff*/
59631, /*ffi*/
59731, /*ffl*/
59815, /*degree*/
59919, /*dagger*/
60016, /*section*/
6017, /*foot mark*/
6020, /*'*/
6030, /*`*/
6040, /*_*/
6050,
6063, /*half nar sp*/
6070,
6080,0,0,0,0,0,0,0,
6090,0,0,0,0,0,0,0,
6100,0,0,0,0,0,0,0,
6110,0,0,0,0,0,0,0,
6120,0,0,0,0,0,0,0,
6130,0,0,0,0,0,0,0,
6140,0,0,0,0,0,0,0,
6150,0,0,0,0,0,0,0,
6160,0,0,0,0,
61720, /*registered*/
61820, /*copyright*/
6190,
62019, /*cent*/
621};
622char W3[256-32] = { /*Times Bold widths*/
62312, /*space*/
62413, /*!*/
6250, /*"*/
6260, /*#*/
62718, /*$*/
62828, /*%*/
62927, /*&*/
63012, /*' close*/
63116, /*(*/
63216, /*)*/
63318, /***/
63436, /*+*/
63512, /*,*/
63614, /*- hyphen*/
63712, /*.*/
63818, /*/*/
63919+0200, /*0*/
64019+0200, /*1*/
64119+0200, /*2*/
64219+0200, /*3*/
64319+0200, /*4*/
64419+0200, /*5*/
64519+0200, /*6*/
64619+0200, /*7*/
64719+0200, /*8*/
64819+0200, /*9*/
64913, /*:*/
65013, /*;*/
6510, /*<*/
65236, /*=*/
6530, /*>*/
65422, /*?*/
6550, /*@*/
65628+0200, /*A*/
65726+0200, /*B*/
65826+0200, /*C*/
65929+0200, /*D*/
66025+0200, /*E*/
66123+0200, /*F*/
66228+0200, /*G*/
66332+0200, /*H*/
66416+0200, /*I*/
66521+0200, /*J*/
66628+0200, /*K*/
66725+0200, /*L*/
66836+0200, /*M*/
66930+0200, /*N*/
67029+0200, /*O*/
67125+0200, /*P*/
67229+0300, /*Q*/
67328+0200, /*R*/
67423+0200, /*S*/
67525+0200, /*T*/
67629+0200, /*U*/
67727+0200, /*V*/
67836+0200, /*W*/
67927+0200, /*X*/
68028+0200, /*Y*/
68127+0200, /*Z*/
68212, /*[*/
6830, /*\*/
68412, /*]*/
6850, /*^*/
6860, /*_*/
68712, /*` open*/
68819, /*a*/
68919+0200, /*b*/
69016, /*c*/
69119+0200, /*d*/
69217, /*e*/
69313+0200, /*f*/
69418+0100, /*g*/
69522+0200, /*h*/
69612+0200, /*i*/
69712+0300, /*j*/
69823+0200, /*k*/
69912+0200, /*l*/
70032, /*m*/
70122, /*n*/
70218, /*o*/
70320+0100, /*p*/
70419+0100, /*q*/
70515, /*r*/
70617, /*s*/
70713+0200, /*t*/
70821, /*u*/
70919, /*v*/
71027, /*w*/
71121, /*x*/
71219+0100, /*y*/
71317, /*z*/
7140, /*{*/
7152, /*|*/
7160, /*}*/
7170, /*~*/
7186, /*narrow space*/
71914, /*hyphen*/
72027, /*bullet*/
72127, /*square*/
72236, /*3/4 em*/
72318, /*rule*/
72428, /*1/4*/
72528, /*1/2*/
72628, /*3/4*/
72736, /*minus*/
72822, /*fi*/
72922, /*fl*/
73023, /*ff*/
73133, /*ffi*/
73233, /*ffl*/
73315, /*degree*/
73420, /*dagger*/
7350, /*section*/
7369, /*foot mark*/
7370, /*'*/
7380, /*`*/
7390, /*_*/
7400,
7413, /*half nar sp*/
7420,
7430,0,0,0,0,0,0,0,
7440,0,0,0,0,0,0,0,
7450,0,0,0,0,0,0,0,
7460,0,0,0,0,0,0,0,
7470,0,0,0,0,0,0,0,
7480,0,0,0,0,0,0,0,
7490,0,0,0,0,0,0,0,
7500,0,0,0,0,0,0,0,
7510,0,0,0,0,
75220, /*registered*/
75320, /*copyright*/
7540,
75519, /*cent*/
756};
757
758/*
759Modified for Commercial II
760and with +, -, and = for equations
761*/
762char W4[256-32] = { /*Special font widths*/
7630,0, /*.=Sw+042-40*/
76413, /*"*/
76529, /*#*/
7660,0,0,0, /*.=Sw+074-40*/
7670,0,0,0,0,0,0,0,
7680,0,0,0,0,0,0,0,
7690,0,0,0,
77036, /*<*/
7710, /*.=Sw+076-40*/
77236, /*>*/
7730, /*.=Sw+100-40*/
77436, /*@*/
7750,0,0,0,0,0,0, /*.=Sw+134-40*/
7760,0,0,0,0,0,0,0,
7770,0,0,0,0,0,0,0,
7780,0,0,0,
77915, /*\\*/
7800, /*.=Sw+136-40*/
78115, /*^*/
78218, /*_ underrule*/
7830,0,0,0,0,0,0,0,
7840,0,0,0,0,0,0,0,
7850,0,0,0,0,0,0,0,
7860,0,0,
78714, /*{*/
7880, /*.=Sw+175-40*/
78914, /*}*/
79015, /*~*/
7910, /*.=Sw+220-40*/
7920,0,0,0,0,0,0,0,
7930,0,0,0,0,0,0,0,
79417, /*section*/
7950, /*.=Sw+222-40*/
79610, /*acute accent*/
79710, /*grave accent*/
79818, /*underrule*/
79915, /*slash (longer)*/
8000, /**/
8010, /**/
80224, /*alpha*/
80323+0300, /*beta*/
80423+0100, /*gamma*/
80519+0200, /*delta*/
80618, /*epsilon*/
80718+0300, /*zeta*/
80823+0100, /*eta*/
80919+0200, /*theta*/
81013, /*iota*/
81121, /*kappa*/
81222+0200, /*lambda*/
81325+0100, /*mu*/
81420, /*nu*/
81520+0300, /*xi*/
81620, /*omicron*/
81727, /*pi*/
81821+0100, /*rho*/
81927, /*sigma*/
82020, /*tau*/
82121, /*upsilon*/
82225+0300, /*phi*/
82322+0100, /*chi*/
82424+0300, /*psi*/
82525, /*omega*/
82624+0200, /*Gamma*/
82726+0200, /*Delta*/
82828+0200, /*Theta*/
82928+0200, /*Lambda*/
83027+0200, /*Xi*/
83129+0200, /*Pi*/
83225+0200, /*Sigma*/
8330, /**/
83428+0200, /*Upsilon*/
83529+0200, /*Phi*/
83632+0200, /*Psi*/
83736+0200, /*Omega*/
83830, /*square root*/
83918+0100, /*terminal sigma*/
84018, /*root en*/
84136, /*>=*/
84236, /*<=*/
84336, /*identically equal*/
84427, /*minus*/
84536, /*approx =*/
84636, /*approximates*/
84736, /*not equal*/
84836, /*right arrow*/
84936, /*left arrow*/
85018, /*up arrow*/
85118, /*down arrow*/
85227, /*equal*/
85327, /*multiply*/
85427, /*divide*/
85536, /*plus-minus*/
85636, /*cup (union)*/
85736, /*cap (intersection)*/
85836, /*subset of*/
85936, /*superset of*/
86036, /*improper subset*/
86136, /*improper superset*/
86234, /*infinity*/
86321, /*partial derivative*/
86436+0200, /*gradient*/
86522, /*not*/
86624, /*integral sign*/
86727, /*proportional to*/
86828, /*empty set*/
86927, /*member of*/
87027, /*plus*/
8710,
8720,
8730, /*box vert rule (was 2.)*/
8740,
87517, /*dbl dagger*/
87642, /*right hand*/
87742, /*left hand*/
87816, /*math * */
87941, /*bell system sign*/
8809, /*or*/
88127, /*circle*/
8829, /*left top (of big curly)*/
8839, /*left bottom*/
8849, /*right top*/
8859, /*right bot*/
8869, /*left center of big curly bracket*/
8879, /*right center of big curly bracket*/
8889, /*bold vertical*/
8899, /*left floor (left bot of big sq bract)*/
8909, /*right floor (rb of ")*/
8919, /*left ceiling (lt of ")*/
8929 }; /*right ceiling (rt of ")*/