summaryrefslogtreecommitdiff
path: root/support/dvispell/latin1.dsi
blob: 089746d97762dd969e493ee51e3505b07ac9a698 (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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
%   latin1.dsi 1.0b-DT (from plain.dsi)
%   Copyright (C) 1991-1995 Eberhard Mattes and Janusz S. Bieñ 
%   Corrected february 2001 by D. Taupin -> latin1.dsi

%   plain.dsi - part of dvisprep.
%   Parameter file that can be compiled into binary format by dvispell

%   This program is free software; you can redistribute it and/or modify it
%   under the terms of the GNU General Public License as published by the
%   Free Software Foundation; either version 2, or (at your option) any
%   later version.

%   This program is distributed in the hope that it will be useful,
%   but WITHOUT ANY WARRANTY; without even the implied warranty of
%   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
%   GNU General Public License for more details.

%   You should have received a copy of the GNU General Public License
%   along with this program; if not, write to the Free Software
%   Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
%

(output ascii
  (WORDSPACE ` )
  (NEWLINE   "0a)
  (NEWPAGE   ("0a "0c))
  (a `a)  (A `A)
  (b `b)  (B `B)
  (c `c)  (C `C)
  (d `d)  (D `D)
  (e `e)  (E `E)
  (f `f)  (F `F)
  (g `g)  (G `G)
  (h `h)  (H `H)
  (i `i)  (I `I)
  (j `j)  (J `J)
  (k `k)  (K `K)
  (l `l)  (L `L)
  (m `m)  (M `M)
  (n `n)  (N `N)
  (o `o)  (O `O)
  (p `p)  (P `P)
  (q `q)  (Q `Q)
  (r `r)  (R `R)
  (s `s)  (S `S)
  (t `t)  (T `T)
  (u `u)  (U `U)
  (v `v)  (V `V)
  (w `w)  (W `W)
  (x `x)  (X `X)
  (y `y)  (Y `Y)
  (z `z)  (Z `Z)
  (digit-zero      	`0)
  (digit-one       	`1)
  (digit-two       	`2)
  (digit-three     	`3)
  (digit-four      	`4)
  (digit-five      	`5)
  (digit-six       	`6)
  (digit-seven     	`7)
  (digit-eight     	`8)
  (digit-nine      	`9)
  (space                ` )
  (exclamation_mark     `!)
  (dquote    `")
  (cdquote   `")
  (odquote   `")
  (hash      `#)
  (dollar    `$)
  (percent   `%)
  (amp       `&)
  (csquote   `')
  (lpar      `()
  (rpar      `))
  (ast       `*)
  (plus      `+)
  (comma     `,)
  (hyphen    `-)
  (endash    `-)
  (emdash    (`- `-))
  (period    `.)
  (slash     `/)
  (colon     `:)
  (semicol   `;)
  (lt        `<)
  (eq        `=)
  (gt        `>)
  (question  `?)
  (at        `@)
  (lbrack    `[)
  (bslash    `\)
  (rbrack    `])
  (hat       `^)
  (uscore    `_)
  (osquote   ``)
  (lbrace    `{)
  (vbar      `|)
  (rbrace    `})
  (asciitilde `~)
  (dotless-i `i)
  (dotless-j `j)
  (fraction  `/)
  (squote    `')
  (shift_out  `<)
  (shift_in `>)
  (ellipsis  (`. `. `.))
)

%KI
(output pc437
  ascii
% (paragraph    "14)
% (section      "15)
  (C-cedilla    "80)
  (u-diaeresis  "81)
  (e-acute      "82)
  (a-circumflex "83)
  (a-diaeresis  "84)
  (a-grave      "85)
  (a-ring-above "86)
  (c-cedilla    "87)
  (e-circumflex "88)
  (e-diaeresis  "89)
  (e-grave      "8a)
  (i-diaeresis  "8b)
  (i-circumflex "8c)
  (i-grave      "8d)
  (A-diaeresis  "8e)
  (A-ring-above "8f)
  (E-acute      "90)
  (ligature-ae  "91)
  (ligature-AE  "92)
  (o-circumflex "93)
  (o-diaeresis  "94)
  (o-grave      "95)
  (u-circumflex "96)
  (u-grave      "97)
  (y-diaeresis   "98)
  (O-diaeresis  "99)
  (U-diaeresis  "9a)
  (cent-sign    "9b)
  (pound-sign   "9c)
  (yen-sign     "9d)
  (peseta-sign  "9e)
  (f-hook       "9f)
  (a-acute      "a0)
  (i-acute      "a1)
  (o-acute      "a2)
  (u-acute      "a3)
  (n-tilde      "a4)
  (N-tilde      "a5)
  (inverted-question-mark    "a8)
  (inverted-exclamation-mark "ad)
  (l-angle      "ae) 	% left-pointing double angle quotation mark
  (r-angle      "af)	% right-pointing double angle quotation mark
  (currency     "cf)
  (s-sharp      "e1)
  (bullet       "f9)
)

(output pc850
  pc437
  (o-stroke      "9b)
  (O-stroke      "9d)
  (peseta-sign)
  (ordfeminine  "a6)
  (ordmasculine "a7)
  (A-acute      "b5)
  (A-circumflex "b6)
  (A-grave      "b7)
  (cent-sign        "bd)
  (yen-sign         "be)
  (a-tilde      "c6)
  (A-tilde      "c7)
  (eth          "d0)
  (Eth          "d1)  % also D-stroke
  (D-stroke     "d1)  % also capital eth
  (E-circumflex "d2)
  (E-diaeresis  "d3)
  (E-grave      "d4)
  (i-dotless    "d5)
  (I-acute      "d6)
  (I-circumflex "d7)
  (I-diaeresis  "d8)
  (I-grave      "de)
  (O-acute      "e0)
  (O-circumflex "e2)
  (O-grave      "e3)
  (o-tilde      "e4)
  (O-tilde      "e5)
  (thorn        "e7)
  (Thorn        "e8)
  (U-acute      "e9)
  (U-circumflex "ea)
  (U-grave      "eb)
  (y-acute      "ec)
  (Y-acute      "ed)
  (section      "f5)
  (bullet)              % "f9 in pc437
)

(output pc852
  pc850
  (u-ring         "85)
  (c-acute        "86)
  (l-stroke       "9b)
  (O-double-acute "8a)
  (o-double-acute "8b)
  (Z-acute        "8d)
  (C-acute        "8f)
  (L-acute        "91)
  (l-acute        "92)
  (L-caron        "94)
  (l-caron        "95)
  (S-acute        "97)
  (s-acute        "98)
  (T-caron        "9b)
  (t-caron        "9c)
  (L-stroke       "9d)
  (c-caron        "9f)
% (o-acute        "a2)
  (A-ogonek       "a4)
  (a-ogonek       "a5)
  (Z-caron        "a6)
  (z-caron        "a7)
  (E-ogonek       "a8)
  (e-ogonek       "a9)
  (z-acute        "ab)
  (C-caron        "ac)
  (s-cedilla      "ad)
% (A-acute        "b5)
% (A-circumflex   "b6)
  (E-caron        "b7)
  (S-cedilla      "b8)
  (Z-dot          "bd)
  (z-dot          "be)
  (A-breve        "c6)
  (a-breve        "c7)
  (d-stroke       "d0)
% (D-stroke       "d1)
  (D-caron        "d2)
% (E-diaeresis    "d3)
  (d-caron        "d4)
% (I-acute        "d6)
% (I-circumflex   "d7)
  (e-caron        "d8)
  (U-ring         "de)
% (O-acute        "e0)
% (O-circumflex   "e2)
  (N-acute        "e3)
  (n-acute        "e4)
  (n-caron        "e5)
  (S-caron        "e6)
  (s-caron        "e7)
  (R-acute        "e8)
% (U-acute        "e9)
  (r-acute        "ea)
  (U-double-acute "eb)
% (y-acute        "ec)
% (Y-acute        "ed)
  (t-cedilla      "ee)
  (u-double-acute "fb)
  (R-caron        "fc)
  (r-caron        "fd)
)

%DT
(output iso-latin1
  ascii
  (paragraph    "b6)
  (section      "a7)
  (C-cedilla    "c7)
  (u-diaeresis  "fc)
  (e-acute      "e9)
  (a-circumflex "e2)
  (a-diaeresis  "e4)
  (a-grave      "e0)
  (a-ring-above "e5)
  (c-cedilla    "e7)
  (e-circumflex "ea)
  (e-diaeresis  "eb)
  (e-grave      "e8)
  (i-diaeresis  "ef)
  (i-circumflex "ee)
  (i-grave      "ec)
  (A-diaeresis  "c4)
  (A-ring-above "c5)
  (E-acute      "c9)
  (ligature-ae  "e6)
  (ligature-AE  "c6)
  (o-circumflex "f4)
  (o-diaeresis  "f6)
  (o-grave      "f2)
  (u-circumflex "fb)
  (u-grave      "f9)
  (y-diaeresis  "ff)
  (O-diaeresis  "d6)
  (U-diaeresis  "dc)
  (cent-sign    "8b)
  (pound-sign   "8c)
  (yen-sign     "8d)
  (peseta-sign  "8e)
  (f-hook       "8f)
  (a-acute      "e1)
  (i-acute      "ed)
  (o-acute      "f3)
  (u-acute      "fa)
  (n-tilde      "f1)
  (N-tilde      "d1)
  (inverted-question-mark    "bf)
  (inverted-exclamation-mark "a1)
  (l-angle      "ab) 	% left-pointing double angle quotation mark
  (r-angle      "bb)	% right-pointing double angle quotation mark
  (currency     "a4)
  (s-sharp      "df)
  (bullet       "a9)
  (o-stroke      "f8)
  (O-stroke      "d8)
  (peseta-sign)
  (ordfeminine  "aa)
  (ordmasculine "ba)
  (A-acute      "c1)
  (A-circumflex "c2)
  (A-grave      "c0)
  (cent-sign        "a2)
  (yen-sign         "a5)
  (a-tilde      "e3)
  (A-tilde      "c3)
  (eth          "f0)
  (Eth          "d0)  % also D-stroke
  (D-stroke     "d0)  % also capital eth
  (E-circumflex "ca)
  (E-diaeresis  "cb)
  (E-grave      "c8)
%  (i-dotless    "d5)
  (I-acute      "cd)
  (I-circumflex "ce)
  (I-diaeresis  "cf)
  (I-grave      "cc)
  (O-acute      "d3)
  (O-circumflex "d4)
  (O-grave      "d2)
  (o-tilde      "f5)
  (O-tilde      "d5)
  (thorn        "fe)
  (Thorn        "de)
  (U-acute      "da)
  (U-circumflex "db)
  (U-grave      "d9)
  (y-acute      "fd)
  (Y-acute      "dd)
  (section      "a7)
)

(output DEFAULT
  iso-latin1
)


(layout ASCII_upper_case
  ("41 A)
  ("42 B)
  ("43 C)
  ("44 D)
  ("45 E)
  ("46 F)
  ("47 G)
  ("48 H)
  ("49 I)
  ("4a J)
  ("4b K)
  ("4c L)
  ("4d M)
  ("4e N)
  ("4f O)
  ("50 P)
  ("51 Q)
  ("52 R)
  ("53 S)
  ("54 T)
  ("55 U)
  ("56 V)
  ("57 W)
  ("58 X)
  ("59 Y)
  ("5a Z)
)

(layout ASCII_lower_case
  ("61 a)
  ("62 b)
  ("63 c)
  ("64 d)
  ("65 e)
  ("66 f)
  ("67 g)
  ("68 h)
  ("69 i)
  ("6a j)
  ("6b k)
  ("6c l)
  ("6d m)
  ("6e n)
  ("6f o)
  ("70 p)
  ("71 q)
  ("72 r)
  ("73 s)
  ("74 t)
  ("75 u)
  ("76 v)
  ("77 w)
  ("78 x)
  ("79 y)
  ("7a z)
)

(layout ASCII_digits
  ("30 digit-zero)
  ("31 digit-one)
  ("32 digit-two)
  ("33 digit-three)
  ("34 digit-four)
  ("35 digit-five)
  ("36 digit-six)
  ("37 digit-seven)
  ("38 digit-eight)
  ("39 digit-nine)
)

(layout ASCII_all_punct
  ("21 exclamation_mark)
  ("22 dquote)
  ("23 hash)
  ("24 dollar)
  ("25 percent)
  ("26 amp)
  ("27 csquote)
  ("28 lpar)
  ("29 rpar)
  ("2a ast)
  ("2b plus)
  ("2c comma)
  ("2d hyphen)
  ("2e period)
  ("2f slash)
  ("3a colon)
  ("3b semicol)
  ("3c lt)
  ("3d eq)
  ("3e gt)
  ("3f question)
  ("40 at)
  ("5b lbrack)
  ("5c bslash)
  ("5d rbrack)
  ("5e hat)
  ("5f uscore)
  ("60 osquote)
  ("7b lbrace)
  ("7c vbar)
  ("7d rbrace)
  ("7e asciitilde)
)

% symbol names below are based on ISO 6937
(layout <accented letters>
  ("80 A-breve)
  ("81 A-ogonek)
  ("82 C-acute)
  ("83 C-caron)
  ("84 D-caron)
  ("85 E-caron)
  ("86 E-ogonek)
  ("87 G-breve)
  ("88 L-acute)
  ("89 L-caron) %Yes, this is how it is called!
  ("8a L-stroke)
  ("8b N-acute)
  ("8c N-caron)
  ("8e O-double-acute)
  ("8f R-acute)
  ("90 R-caron)
  ("91 S-acute)
  ("92 S-caron)
  ("93 S-cedilla)
  ("94 T-caron)
  ("95 T-cedilla)
  ("96 U-double-acute)
  ("97 U-ring)
  ("98 Y-diaeresis)
  ("99 Z-acute)
  ("9a Z-caron)
  ("9b Z-dot)
  ("9d I-dot)
  ("a0 a-breve)
  ("a1 a-ogonek)
  ("a2 c-acute)
  ("a3 c-caron)
  ("a4 d-caron) %Yes, this is how it is called!
  ("a5 e-caron)
  ("a6 e-ogonek)
  ("a7 g-breve)
  ("a8 l-acute)
  ("a9 l-caron) %Yes, this is how it is called!
  ("aa l-stroke)
  ("ab n-acute)
  ("ac n-caron)
  ("ae o-double-acute)
  ("af r-acute)
  ("b0 r-caron)
  ("b1 s-acute)
  ("b2 s-caron)
  ("b3 s-cedilla)
  ("b4 t-caron)
  ("b5 t-cedilla)
  ("b6 u-double-acute)
  ("b7 u-ring)
  ("b8 y-diaeresis)
  ("b9 z-acute)
  ("ba z-caron)
  ("bb z-dot)
  ("c0 A-grave)
  ("c1 A-acute)
  ("c2 A-circumflex)
  ("c3 A-tilde)
  ("c4 A-diaeresis)
  ("c5 A-ring-above)
  ("c7 C-cedilla)
  ("c8 E-grave)
  ("c9 E-acute)
  ("ca E-circumflex)
  ("cb E-diaeresis)
  ("cc I-grave)
  ("cd I-acute)
  ("ce I-circumflex)
  ("cf I-diaeresis)
  ("d1 N-tilde)
  ("d2 O-grave)
  ("d3 O-acute)
  ("d4 O-circumflex)
  ("d5 O-tilde)
  ("d6 O-diaeresis)
  ("d9 U-grave)
  ("da U-acute)
  ("db U-circumflex)
  ("dc U-diaeresis)
  ("dd Y-acute)
  ("e0 a-grave)
  ("e1 a-acute)
  ("e2 a-circumflex)
  ("e3 a-tilde)
  ("e4 a-diaeresis)
  ("e5 a-ring-above)
  ("e7 c-cedilla)
  ("e8 e-grave)
  ("e9 e-acute)
  ("ea e-circumflex)
  ("eb e-diaeresis)
  ("ec i-grave)
  ("ed i-acute)
  ("ee i-circumflex)
  ("ef i-diaeresis)
  ("f1 n-tilde)
  ("f2 o-grave)
  ("f3 o-acute)
  ("f4 o-circumflex)
  ("f5 o-tilde)
  ("f6 o-diaeresis)
  ("f9 u-grave)
  ("fa u-acute)
  ("fb u-circumflex)
  ("fc u-diaeresis)
  ("fd y-acute)
)

(layout <special letters and characters>
  ("00  grave)
  ("01  acute)
  ("02  circumflex)
  ("03  tilde)
  ("04  diaeresis)
  ("05  hungarumlaut)
  ("06  ring)
  ("07  caron)
  ("08  breve)
  ("09  macron)
  ("0a  dot-above)
  ("0b  cedilla)
  ("0c  ogonek)
  ("0d  quotesinglbase)
  ("0e  shift_out)
  ("0f  shift_in)
  ("10  odquote)
  ("11  quotedblright)
  ("12  quotedblbase)
  ("13  l-angle)
  ("14  r-angle)
  ("15  endash)
  ("16  emdash)
  ("19  dotless-i)
  ("1a  dotless-j)
  ("1b  ff)
  ("1c  fi)
  ("1d  fl)
  ("1e  ffi)
  ("1f  ffl)
  ("8d  eNg)
  ("9c  IJ)
  ("9e  d-stroke)
  ("9f  section)
  ("ad  eng)
  ("bc  ij)
  ("bd  inverted-exclamation-mark)
  ("be  inverted-question-mark)
  ("bf  pound-sign)
  ("c6  ligature-AE)
  ("d0  D-stroke)
  ("d7  OE)
  ("d8  O-stroke)
  ("de  Thorn)
  ("df  SS)
  ("e6  ligature-ae)
  ("f0  eth)
  ("f7  oe)
  ("f8  o-stroke)
  ("fe  thorn)
  ("ff  s-sharp)
)

(layout CM_text_punct
  ASCII_all_punct
  ("22 cdquote)
  ("3c inverted-exclamation-mark)
  ("3e inverted-question-mark)
  ("5c odquote)
  ("5f )
  ("7b endash)
  ("7c emdash)
  ("7d )
  ("7f )
)

(layout CM_text_f_ligatures
  ("0b ff)
  ("0c fi)
  ("0d fl)
  ("0e ffi)
  ("0f ffl)
)

(layout CM_text_accents
  ("12 grave)
  ("13 acute)
  ("14 caron)
  ("15 breve)
  ("16 macron)
  ("17 ring)
  ("18 cedilla)
  ("20 stroke)
  ("5f dot-above)
  ("7d hungarumlaut)
  ("7e tilde)
  ("7f diaeresis)
)

(layout CM_greek_upper_case
  ("00 Gamma)
  ("01 Delta)
  ("02 Theta)
  ("03 Lambda)
  ("04 Xi)
  ("05 Pi)
  ("06 Sigma)
  ("07 Upsilon)
  ("08 Phi)
  ("09 Psi)
  ("0a Omega)
)

(layout CM_text_misc
  ("10 dotless-i)
  ("11 dotless-j)
  ("19 s-sharp)
  ("1a ligature-ae)
  ("1b oe)
  ("1c o-stroke)
  ("1d ligature-AE)
  ("1e OE)
  ("1f O-stroke)
)

(layout ASCII
  ASCII_upper_case
  ASCII_lower_case
  ASCII_digits
  ASCII_all_punct
)
  
(layout <TeX text>
  ASCII_upper_case
  ASCII_lower_case
  ASCII_digits
  CM_text_punct
  CM_text_accents
  CM_text_f_ligatures
  CM_greek_upper_case
  CM_text_misc
)

(layout <TeX text without f-ligatures>
  ASCII_upper_case
  ASCII_lower_case
  ASCII_digits
  CM_text_punct
  CM_text_accents
  CM_greek_upper_case
  CM_text_misc
)

(layout <TeX typewriter text>
  ASCII_upper_case
  ASCII_lower_case
  ASCII_digits
  ASCII_all_punct
  CM_text_accents
  CM_greek_upper_case
  CM_text_misc
  ("20 space)
  ("5c bslash)
  ("5f uscore)
  ("7b lbrace)
  ("7c vbar)
  ("7d rbrace)
  ("7e asciitilde)
)

(layout <TeX extended ASCII>
  <TeX typewriter text>
  %...
)

(layout <ASCII caps and digits>      % cminch
  ASCII_upper_case
  ASCII_digits
)

(layout <TeX math italic>
  ASCII_upper_case
  ASCII_lower_case
  ASCII_digits
  CM_greek_upper_case
  ("2c left-hook)
  ("2d right-hook)
)

(layout <TeX math symbols>
  ASCII_upper_case
  ("01 periodcentered)
  ("0f bullet)
  ("78 section)
  ("79 dagger)
  ("7a daggerdbl)
  ("7b paragraph)
)

(layout <AEFMNOT only>
  ("41 A)
  ("45 E)
  ("46 F)
  ("4d M)
  ("4e N)
  ("4f O)
  ("54 T)
)

(layout <AEFMNOPST only>
  ("41 A)
  ("45 E)
  ("46 F)
  ("4d M)
  ("4e N)
  ("4f O)
  ("50 P)
  ("53 S)
  ("54 T)
)

(layout <Extended TeX Font Encoding - Latin>
  <TeX text>
  <accented letters>
  <special letters and characters>
)

% Table for virtual fonts generated by Zlatuska's ACCENTS program (obsolete)

(layout <TeX text ACCENTS>
  <TeX text>
  <accented letters>
)

% Bug in ACCENTS program: name font coding scheme truncated (obsolete)

(layout <TeX text AC>
  <TeX text ACCENTS>
)

% PostScript

(layout <AdobeStandardEncoding>
  ASCII_upper_case
  ASCII_lower_case
  ASCII_digits
  ASCII_all_punct
  ('241 inverted-exclamation-mark)        % exclamdown
  ('242 cent-sign)          % cent
  ('243 pound-sign)         % sterling
  ('244 fraction)
  ('245 yen-sign)           % yen
  ('246 f-hook)
  ('247 section)
  ('250 currency)
  ('251 squote)         % quotesingle
  ('252 odquote)        % quotedblleft
  ('253 l-angle)        % guillemotleft, left-pointing double angle quotation mark
  ('254 shift_out)
  ('255 shift-in)
  ('256 fi)
  ('257 fl)
  ('261 endash)
  ('262 dagger)
  ('263 daggerdbl)
  ('264 periodcentered)
  ('266 paragraph)
  ('267 bullet)
  ('270 quotesinglbase)
  ('271 quotedblbase)
  ('272 quotedblright)
  ('273 r-angle)        % guillemotright, left-pointing double angle quotation mark
  ('274 ellipsis)
  ('275 perthousand)
  ('277 inverted-question-mark)      % questiondown
  ('301 grave)
  ('302 acute)
  ('303 circumflex)
  ('304 tilde)
  ('305 macron)
  ('306 breve)
  ('307 dot-above)      % dotaccent
  ('310 diaeresis)      % dieresis
  ('312 ring)
  ('313 cedilla)
  ('315 hungarumlaut)
  ('316 ogonek)
  ('317 caron)
  ('320 emdash)
  ('341 ligature-AE)
  ('343 ordfeminine)
  ('350 L-stroke)       % Lslash
  ('351 O-stroke)        % Oslash
  ('352 OE)
  ('353 ordmasculine)
  ('361 ligature-ae)
  ('365 dotless-i)      % dotlessi
  ('370 l-stroke)       % lslash
  ('371 o-stroke)        % oslash
  ('372 oe)
  ('373 s-sharp)          % germandbls
)

% afm2tfm

(layout <TeX text + AdobeStandardEncoding>
  ASCII_upper_case
  ASCII_lower_case
  ASCII_digits
  ASCII_all_punct
  ("3c)
  ("3e)
  ("5c)
  ("5f)
  ("7b)
  ("7d)
)

(layout GFGRAY)                     % gray
(layout GFSLANT)                    % slant
(layout <TeX math extension>)       % cmsy
(layout PI)                         % cmman, manfnt
(layout <em symbols>)               % emsy
(layout <LaTeX symbols>)            % lasy
(layout <LaTeX circle>)             % lcircle
(layout <LaTeX line>)               % line

(font (cmti7 cmti8 cmti9 cmti10 cmti12 cmbxti10)
  <TeX text>
  ("24 pound-sign)
)

(font ()                      % default font
  ASCII_upper_case
  ASCII_lower_case
  ASCII_digits
)

(letters a b c d e f g h i j k l m n o p q r s t u v w x y z
         A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
         a-acute a-breve a-grave a-circumflex a-diaeresis 
         a-ogonek a-ring-above a-tilde
         A-acute A-breve A-grave A-circumflex A-diaeresis 
         A-ogonek A-ring-above A-tilde
         c-acute c-caron c-cedilla
         C-acute C-caron C-cedilla
         d-caron d-stroke
         D-caron D-stroke
         e-acute e-caron e-circumflex e-diaeresis e-grave e-ogonek
         E-acute E-caron E-circumflex E-diaeresis E-grave E-ogonek
         g-breve
         G-breve
         i-acute i-circumflex i-diaeresis i-grave
         I-acute I-circumflex I-diaeresis I-dot I-grave
         l-acute l-caron l-stroke
         L-acute L-caron L-stroke
         n-acute n-caron n-tilde
         N-acute N-caron N-tilde
         o-acute o-circumflex o-diaeresis o-double-acute o-grave o-tilde
         o-stroke
         O-acute O-circumflex O-diaeresis O-double-acute O-grave O-tilde
         O-stroke
         r-acute r-caron
         R-acute R-caron
         s-acute s-caron s-cedilla
         S-acute S-caron S-cedilla
         t-caron t-cedilla
         T-caron T-cedilla
         u-acute u-circumflex u-diaeresis u-double-acute u-grave u-ring
         U-acute U-circumflex U-diaeresis U-double-acute U-grave U-ring
         y-acute y-diaeresis
         Y-acute Y-diaeresis
         z-acute z-caron z-dot
         Z-acute Z-caron Z-dot
         s-sharp SS ligature-ae ligature-AE eng eNg ij IJ eth Eth oe OE thorn Thorn
         hyphen endash
)

(conversion formatting
  ((NEWLINE NEWLINE) NEWLINE)
  ((NEWLINE WORDSPACE) NEWLINE)
  ((NEWLINE NEWPAGE) NEWPAGE)
  ((WORDSPACE WORDSPACE) WORDSPACE)
  ((WORDSPACE NEWLINE) NEWLINE)
  ((WORDSPACE NEWPAGE) NEWPAGE)
  ((WORDSPACE END) END)
  ((NEWPAGE NEWLINE) NEWPAGE)
  ((NEWPAGE WORDSPACE) NEWPAGE)
  (NONLETTER WORDSPACE)
  ((START NEWLINE) START)
  ((START WORDSPACE) START)
  (START)
  (END)
)

(conversion accents
  ((acute a) a-acute)
  ((acute A) A-acute)
  ((acute c) c-acute)
  ((acute C) C-acute)
  ((acute e) e-acute)
  ((acute E) E-acute)
  ((acute i) i-acute)
  ((acute dotless-i) i-acute)
  ((acute I) I-acute)
  ((acute l) l-acute)
  ((acute L) L-acute)
  ((acute n) n-acute)
  ((acute N) N-acute)
  ((acute o) o-acute)
  ((acute O) O-acute)
  ((acute r) r-acute)
  ((acute R) R-acute)
  ((acute s) s-acute)
  ((acute S) S-acute)
  ((acute u) u-acute)
  ((acute U) U-acute)
  ((acute y) y-acute)
  ((acute Y) Y-acute)
  ((acute z) z-acute)
  ((acute Z) Z-acute)
  ((breve a) a-breve)
  ((breve A) A-breve)
  ((breve g) g-breve)
  ((breve G) G-breve)
  ((caron c) c-caron)
  ((caron C) C-caron)
  ((caron d) d-caron)
  ((caron D) D-caron)
  ((caron e) e-caron)
  ((caron E) E-caron)
  ((caron l) l-caron)
  ((caron L) L-caron)
  ((caron n) n-caron)
  ((caron N) N-caron)
  ((caron r) r-caron)
  ((caron R) R-caron)
  ((caron s) s-caron)
  ((caron S) S-caron)
  ((caron t) t-caron)
  ((caron T) T-caron)
  ((caron z) z-caron)
  ((caron Z) Z-caron)
  ((cedilla c) c-cedilla)
  ((cedilla C) C-cedilla)
  ((cedilla s) s-cedilla)
  ((cedilla S) S-cedilla)
  ((cedilla t) t-cedilla)
  ((cedilla T) T-cedilla)
  ((diaeresis a) a-diaeresis)
  ((diaeresis A) A-diaeresis)
  ((diaeresis e) e-diaeresis)
  ((diaeresis E) E-diaeresis)
  ((diaeresis i) i-diaeresis)
  ((diaeresis dotless-i) i-diaeresis)
  ((diaeresis I) I-diaeresis)
  ((diaeresis o) o-diaeresis)
  ((diaeresis O) O-diaeresis)
  ((diaeresis u) u-diaeresis)
  ((diaeresis U) U-diaeresis)
  ((diaeresis y) y-diaeresis)
  ((diaeresis Y) Y-diaeresis)
  ((dot-above I) I-dot)
  ((dot-above z) z-dot)
  ((dot-above Z) Z-dot)
  ((grave a) a-grave)
  ((grave A) A-grave)
  ((grave e) e-grave)
  ((grave E) E-grave)
  ((grave i) i-grave)
  ((grave dotless-i) i-grave)
  ((grave I) I-grave)
  ((grave o) o-grave)
  ((grave O) O-grave)
  ((grave u) u-grave)
  ((grave U) U-grave)
  ((stroke d) d-stroke)
  ((stroke D) D-stroke)
  ((stroke l) l-stroke)
  ((stroke L) L-stroke)
  ((ring a) a-ring-above)
  ((ring A) A-ring-above)
  ((ring u) u-ring)
  ((ring U) U-ring)
  ((tilde a) a-tilde)
  ((tilde A) A-tilde)
  ((tilde n) n-tilde)
  ((tilde N) N-tilde)
  ((tilde o) o-tilde)
  ((tilde O) O-tilde)
)

(conversion f_ligatures
  (ff  (f f))
  (fi  (f i))
  (fl  (f l))
  (ffi (f f i))
  (ffl (f f l))
)

(conversion DEFAULT
  formatting
  accents
  f_ligatures
)

(conversion hyphen
  DEFAULT
  ((hyphen NEWLINE) )
)

(conversion wordlist
  DEFAULT
  (WORDSPACE NEWLINE)
  (NEWPAGE NEWLINE)
  ((NEWLINE hyphen) NEWLINE)
)

(conversion hyphen-wordlist
  hyphen wordlist
)