summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/simple2.mp
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-05-19 18:54:54 +0000
committerKarl Berry <karl@freefriends.org>2009-05-19 18:54:54 +0000
commit2d248026682e0a02fa2b004a0ad2f13f57d8535c (patch)
tree7088bbd745de030191c2d843c4b3f4d9d5c46d91 /Master/texmf-dist/doc/latex/latex-tipps-und-tricks/simple2.mp
parenteecee5a57aa7fbeb22e0df8440fb3b06c5117fc7 (diff)
move german latex docs out of texmf-doc
git-svn-id: svn://tug.org/texlive/trunk@13264 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-tipps-und-tricks/simple2.mp')
-rw-r--r--Master/texmf-dist/doc/latex/latex-tipps-und-tricks/simple2.mp24
1 files changed, 24 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/simple2.mp b/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/simple2.mp
new file mode 100644
index 00000000000..560a5542ff8
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/simple2.mp
@@ -0,0 +1,24 @@
+u := 5mm;
+defaultfont := "pplr";
+defaultscale := 12pt/fontsize defaultfont;
+
+beginfig(1);
+path p;
+p := unitsquare xscaled 8u yscaled 3u;
+
+fill p shifted(11u,6u) withcolor 0.8white;
+fill p shifted(0,6u) withcolor 0.8white;
+draw p shifted(0,u) withcolor 0.8white;
+
+drawarrow (4u,6u)--(4u,4u);
+drawarrow (4u,1u)--(4u,0);
+drawarrow (11u,7.5u){-1,.5}..{-1,-.5}(8u,7.5u);
+
+label("unten",(4u,2.5u));
+label("oben",(4u,7.5u));
+
+defaultfont:="pcrr";
+label("rechts",(15u,7.5u));
+
+endfig;
+end;