summaryrefslogtreecommitdiff
path: root/info/drawing-with-metapost/src/plain-axes.mp
diff options
context:
space:
mode:
Diffstat (limited to 'info/drawing-with-metapost/src/plain-axes.mp')
-rw-r--r--info/drawing-with-metapost/src/plain-axes.mp17
1 files changed, 17 insertions, 0 deletions
diff --git a/info/drawing-with-metapost/src/plain-axes.mp b/info/drawing-with-metapost/src/plain-axes.mp
new file mode 100644
index 0000000000..e535290d21
--- /dev/null
+++ b/info/drawing-with-metapost/src/plain-axes.mp
@@ -0,0 +1,17 @@
+\documentclass{standalone}
+\usepackage{luamplib}
+\begin{document}
+\mplibtextextlabel{enable}
+\begin{mplibcode}
+beginfig(1);
+ path xx, yy;
+ xx = (left -- right) scaled 130;
+ yy = (down -- up) scaled 80;
+ drawarrow xx;
+ drawarrow yy;
+ label.rt("$x$", point 1 of xx);
+ label.top("$y$", point 1 of yy);
+endfig;
+\end{mplibcode}
+\end{document}
+