summaryrefslogtreecommitdiff
path: root/Master/texmf-doc/doc/german/latex-tipps-und-tricks/simple2.mp
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2005-12-29 00:26:31 +0000
committerKarl Berry <karl@freefriends.org>2005-12-29 00:26:31 +0000
commitc365d78bfcdeb6493a68e35e852244839c1c9ee4 (patch)
treed488910550c0a1dacc75509f02d03551d88ed2f4 /Master/texmf-doc/doc/german/latex-tipps-und-tricks/simple2.mp
parent0d5f68998e0af490bbfdeb67a5dada34c034c8b0 (diff)
doc/french+
git-svn-id: svn://tug.org/texlive/trunk@16 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-doc/doc/german/latex-tipps-und-tricks/simple2.mp')
-rw-r--r--Master/texmf-doc/doc/german/latex-tipps-und-tricks/simple2.mp24
1 files changed, 24 insertions, 0 deletions
diff --git a/Master/texmf-doc/doc/german/latex-tipps-und-tricks/simple2.mp b/Master/texmf-doc/doc/german/latex-tipps-und-tricks/simple2.mp
new file mode 100644
index 00000000000..560a5542ff8
--- /dev/null
+++ b/Master/texmf-doc/doc/german/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;