From 349e4c03804bdffd2a4696347a941ad1577e2280 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 30 Apr 2010 21:17:05 -0400 Subject: [PATCH] Avoid non-standard macros (they seem to break Asymptote's label alignment) --- tex/src/figures/v-dep/v-dep-sd.asy | 6 +++--- tex/src/figures/v-dep/v-dep.asy | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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); -- 2.26.2