summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/logticks.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/logticks.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/logticks.asy11
1 files changed, 11 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/logticks.asy b/Master/texmf-dist/doc/asymptote/examples/logticks.asy
new file mode 100644
index 00000000000..bdd14411692
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/logticks.asy
@@ -0,0 +1,11 @@
+import graph;
+
+size(300,175,IgnoreAspect);
+scale(Log,Log);
+draw(graph(identity,5,20));
+xlimits(5,20);
+ylimits(1,100);
+xaxis("$M/M_\odot$",BottomTop,LeftTicks(DefaultFormat,
+ new real[] {6,10,12,14,16,18}));
+yaxis("$\nu_{\rm upp}$ [Hz]",LeftRight,RightTicks(DefaultFormat));
+