blob: 173cc3c360728cf560e66ae861f2e225d22d326d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
\newdimen\unitlength
\unitlength=1cm
\def\plot(#1,#2){%
\rlap{\kern#1\unitlength\raise#2\unitlength%
\hbox{$\scriptstyle\bullet\;(#1,#2)$}}}
\centerline{%
\hbox{\plot(0,0)
\plot(1,1)
\plot(-3,2)}%
}
|