blob: 38854808ba6315102dd0ca506b520d0ced13860e (
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
|
% Feynman diagram font, 12pt display size.
%
% Copyright 1991, 1994, 2001, Norman Gray <norman@astro.gla.ac.uk>
% $Id: feyn12.mf,v 1.4 2001/08/20 21:40:32 norman Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% First the base size
module# := 12pt#;
% phfudge is ... what?!
phfudge# := 0pt#; % must be, for \Diagram macro
linewidth# := 0.9pt#; % pen width
thinlinewidth# := 0.6pt#; % thin pen
bigarrow# := 7pt#; % size of arrows
littlearrow# := 5pt#;
blobr# := 7.5pt#; % radius of blobs and crosses
% We want the roman digits from the corresponding cmr font, and that's
% all. Therefore, we don't want to obey the `generate' command in
% cmr??.mf. To do this, we read in cmbase, and then set generate to
% gobble its argument.
def gobble primary g=enddef; % gobbles its argument
input cmbase; % Read it explicitly, rather than
% implicitly within cmr10
let generate=gobble;
input cmr12; % ...but miss out the `generate roman'
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% To business....
input feyn;
end
|