summaryrefslogtreecommitdiff
path: root/info/examples/lgc2/3-2-3.mp
blob: 0244c913cfbea54ba8eec4ab80e3dfc60668b7e6 (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
% --- start of displayed preamble in the book ---

% --- end of displayed preamble in the book ---
defaultfont:="ptmr8r";
warningcheck:=0;
beginfig(1)
verbatimtex
\documentclass{article}
\usepackage{times,amsmath}
\begin{document}
etex;
picture p; path q;
p:=thelabel(btex \Large
\begin{minipage}{4in}
\begin{gather}
\iint\limits_A f(x,y)\,dx\,dy\qquad
\iiint\limits_A f(x,y,z)\,dx\,dy\,dz\\
\iiiint\limits_A f(w,x,y,z)\,dw\,dx\,dy\,dz
\qquad\idotsint\limits_A f(x_1,\dots,x_k)
\end{gather}
\end{minipage}
etex,(0,0));
q:=fullcircle scaled 2.5in;
draw q;
clip p to q;
draw p rotated 90;
endfig;
end;