summaryrefslogtreecommitdiff
path: root/Master/texmf/asymptote/annotate.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/asymptote/annotate.asy')
-rw-r--r--Master/texmf/asymptote/annotate.asy16
1 files changed, 0 insertions, 16 deletions
diff --git a/Master/texmf/asymptote/annotate.asy b/Master/texmf/asymptote/annotate.asy
deleted file mode 100644
index aba9309cb65..00000000000
--- a/Master/texmf/asymptote/annotate.asy
+++ /dev/null
@@ -1,16 +0,0 @@
-void annotate(picture pic=currentpicture, string title, string text,
- pair position)
-{
- pic.add(new void(frame f, transform t) {
- position=t*position;
- label(f,"\special{!/pdfmark where
- {pop} {userdict /pdfmark /cleartomark load put} ifelse
- [/Rect["+(string) position.x+" 0 0 "+(string) position.y+"]
- /Subtype /Text
- /Name /Comment
- /Title ("+title+")
- /Contents ("+text+")
- /ANN pdfmark}");
- },true);
- draw(pic,position,invisible);
-}