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
|
% ascii.mf 1.2.0 1994/10/11 -- a common subset of the ASCII character set
% Copyright 1994 P. Damian Cugley
%%% @METAFONT-file {
%%% filename = "ascii.mf",
%%% version = "1.2.0",
%%% date = "1994/10/11",
%%% package = "Malvern 1.2",
%%% author = "P. Damian Cugley",
%%% email = "damian.cugley@comlab.ox.ac.uk",
%%% address = "Oxford University Computing Laboratory,
%%% Parks Road, Oxford OX1 3QD, UK",
%%% codetable = "USASCII",
%%% keywords = "Malvern, METAFONT, font, typefont, TeX",
%%% supported = "Maybe",
%%% abstract = "Specify the character codes for a common subset of
%%% the ASCII character set.",
%%% dependencies = "",
%%% }
% See the Malvern Handbook (maman.tex) for more info about Malvern.
% This software is available freely but without warranty.
% See the file COPYING for details.
code.exclam = 33;
code.hash = 35;
code.dollar = 36;
code.percent = 37;
code.ampersand = 38;
code.apostrophe = 39;
code.paren.left = 40;
code.paren.right = 41;
code.asterisk5 = 42;
code.plus_sign = 43;
code.comma = 44;
code.full_stop = 46;
code.slash = 47;
code.colon = 58;
code.semicolon = 59;
code.equals = 61;
code.question = 63;
code.at_sign = 64;
code.brack.left = 91;
code.brack.right = 93;
code.inv.comma = 96;
|