-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharrow2.mp
More file actions
42 lines (34 loc) · 960 Bytes
/
arrow2.mp
File metadata and controls
42 lines (34 loc) · 960 Bytes
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
% tex/conc/mp/arrow2.mp 2016-12-23 Alan Kennington.
% $Id: tex/conc/mp/arrow2.mp 3f829ff4e7 2016-12-22 17:47:07Z Alan U. Kennington $
% Differential of a map from one manifold to another.
% Formerly map62.mp.
input mapmax
verbatimtex
\input akmath
etex
beginfig(1);
pair w[];
a := 2.0cm;
b := 2.0cm;
q := 0.5cm;
qq := 0.38cm;
dd := 1mm; % Gap between arrows.
w0 := (0,0);
w1 := (-a/2,b);
w2 := (a/2,b);
% The labels for the spaces.
label(btex $\displaystyle\mtimes_{\alpha\in A}V_\alpha$ etex, w0);
label(btex $W_1$ etex, w1);
label(btex $W_2$ etex, w2);
% The arrows.
S_arrowspaces(w0,w1,q,q,1,black);
S_arrowspaces(w0,w2,q,q,1,black);
S_arrowspace(w1+(0,dd),w2+(0,dd),q,1,black);
S_arrowspace(w1+(0,-dd),w2+(0,-dd),q,2,black);
% The arrow labels.
label.llft(btex $\mu_1$ etex, 0.5[w0,w1]);
label.lrt(btex $\mu_2$ etex, 0.5[w0,w2]);
label.top(btex $g_{21}$ etex, 0.5[w1,w2]+(0,dd));
label.bot(btex $g_{12}$ etex, 0.5[w2,w1]+(0,-dd));
endfig;
end