From: W. Trevor King Date: Sat, 1 May 2010 01:17:05 +0000 (-0400) Subject: Avoid non-standard macros (they seem to break Asymptote's label alignment) X-Git-Tag: v1.0~385 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=349e4c03804bdffd2a4696347a941ad1577e2280;p=thesis.git Avoid non-standard macros (they seem to break Asymptote's label alignment) --- diff --git a/tex/src/figures/v-dep/v-dep-sd.asy b/tex/src/figures/v-dep/v-dep-sd.asy index 82eb5ba..2555798 100644 --- a/tex/src/figures/v-dep/v-dep-sd.asy +++ b/tex/src/figures/v-dep/v-dep-sd.asy @@ -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); diff --git a/tex/src/figures/v-dep/v-dep.asy b/tex/src/figures/v-dep/v-dep.asy index 8c2b620..83f4946 100644 --- a/tex/src/figures/v-dep/v-dep.asy +++ b/tex/src/figures/v-dep/v-dep.asy @@ -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);