Avoid non-standard macros (they seem to break Asymptote's label alignment)
authorW. Trevor King <wking@drexel.edu>
Sat, 1 May 2010 01:17:05 +0000 (21:17 -0400)
committerW. Trevor King <wking@drexel.edu>
Sat, 1 May 2010 01:17:05 +0000 (21:17 -0400)
tex/src/figures/v-dep/v-dep-sd.asy
tex/src/figures/v-dep/v-dep.asy

index 82eb5ba383980706430eab0d87697765910b5372..255579880136e3946cff2ccf4e398828c0ac0e4e 100644 (file)
@@ -17,15 +17,15 @@ real fn_logxliny(real x, real[] params) {
 
 graphFile(sd, "v_dep-5e-5_0.1e-9/v_dep", ycol=2,
          xscale=xscale, yscale=yscale, p=psoft,
-         t="$k_{u0}=5\E{-5}\U{s$^{-1}$}$, $\Delta x_u=0.100\U{nm}$",
+         t="$k_{u0}=5\cdot10^{-5}\mbox{ s$^{-1}$}$, $\Delta x_u=0.100\mbox{ nm}$",
          dots=true);
 graphFile(sd, "v_dep-1e-5_0.225e-9/v_dep", ycol=2,
          xscale=xscale, yscale=yscale, p=pmed,
-         t="$k_{u0}=1\E{-5}\U{s$^{-1}$}$, $\Delta x_u=0.225\U{nm}$",
+         t="$k_{u0}=1\cdot10^{-5}\mbox{ s$^{-1}$}$, $\Delta x_u=0.225\mbox{ nm}$",
          dots=true);
 graphFile(sd, "v_dep-5e-5_0.225e-9/v_dep", ycol=2,
          xscale=xscale, yscale=yscale, p=phard,
-         t="$k_{u0}=5\E{-5}\U{s$^{-1}$}$, $\Delta x_u=0.225\U{nm}$",
+         t="$k_{u0}=5\cdot10^{-5}\mbox{ s$^{-1}$}$, $\Delta x_u=0.225\mbox{ nm}$",
          dots=true);
 fitFile(sd, "v_dep-5e-5_0.1e-9/v_dep-sd.fit.dat", f=fn_logxliny,
        xmin=1e-9, xmax=1e-5, xscale=xscale, yscale=yscale, p=psoft);
index 8c2b62068e5d43cb902630f65c81d70bd2ca90f7..83f49469185a28b0e41c0105de35cd5d5b205834 100644 (file)
@@ -12,13 +12,13 @@ real fn_logxliny(real x, real[] params) {
 }
 
 graphFile("v_dep-5e-5_0.1e-9/v_dep", xscale=xscale, yscale=yscale, p=psoft,
-         t="$k_{u0}=5\E{-5}\U{s$^{-1}$}$, $\Delta x_u=0.100\U{nm}$",
+         t="$k_{u0}=5\cdot10^{-5}\mbox{ s$^{-1}$}$, $\Delta x_u=0.100\mbox{ nm}$",
          dots=true);
 graphFile("v_dep-1e-5_0.225e-9/v_dep", xscale=xscale, yscale=yscale, p=pmed,
-         t="$k_{u0}=1\E{-5}\U{s$^{-1}$}$, $\Delta x_u=0.225\U{nm}$",
+         t="$k_{u0}=1\cdot10^{-5}\mbox{ s$^{-1}$}$, $\Delta x_u=0.225\mbox{ nm}$",
          dots=true);
 graphFile("v_dep-5e-5_0.225e-9/v_dep", xscale=xscale, yscale=yscale, p=phard,
-         t="$k_{u0}=5\E{-5}\U{s$^{-1}$}$, $\Delta x_u=0.225\U{nm}$",
+         t="$k_{u0}=5\cdot10^{-5}\mbox{ s$^{-1}$}$, $\Delta x_u=0.225\mbox{ nm}$",
          dots=true);
 fitFile("v_dep-5e-5_0.1e-9/v_dep.fit.dat", f=fn_logxliny,
        xmin=1e-9, xmax=1e-5, xscale=xscale, yscale=yscale, p=psoft);