diff options
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/xsin1x.asy')
-rw-r--r-- | Master/texmf/doc/asymptote/examples/xsin1x.asy | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Master/texmf/doc/asymptote/examples/xsin1x.asy b/Master/texmf/doc/asymptote/examples/xsin1x.asy index f03714b79df..e419ba19a69 100644 --- a/Master/texmf/doc/asymptote/examples/xsin1x.asy +++ b/Master/texmf/doc/asymptote/examples/xsin1x.asy @@ -8,3 +8,11 @@ xaxis("$x$",red); yaxis(red); draw(graph(f,-1.2/pi,1.2/pi,1000)); label("$x\sin\frac{1}{x}$",F(1.1/pi),NW); + +picture pic; +size(pic,50,IgnoreAspect); +xaxis(pic,red); +yaxis(pic,red); +draw(pic,graph(pic,f,-0.1/pi,0.1/pi,1000)); +attach(bbox(pic,blue),point(N+0.85W),10SE); + |