Set Asymptote fontsize to 10pt globally, not just for sLabel()s.
authorW. Trevor King <wking@tremily.us>
Wed, 27 Jun 2012 13:20:58 +0000 (09:20 -0400)
committerW. Trevor King <wking@tremily.us>
Wed, 27 Jun 2012 13:20:58 +0000 (09:20 -0400)
src/figures/asy/wtk_graph.asy
src/root.tex

index 64f420168ffe89b0b0b716a07943554946dcc15a..ca997b79b96840bf7a35e43867dcda0b6c86aa78 100644 (file)
@@ -3,15 +3,13 @@ import palette;
 import stats;
 
 
-real fsize=10;
-
 Label sLabel(string s, align align=NoAlign, int extra_spaces=0) {
   string spaces = "";
   int i;
   for (i=0; i<extra_spaces; ++i) {
     spaces += " ";
   }
-  return Label(s+spaces, s+spaces, fontsize(fsize), align=align);
+  return Label(s+spaces, s+spaces, align=align);
 }
 
 void graphData(picture pic=currentpicture, real[] x, real[] y,
index 64b06f6140f4847625bb47926f031472a1dc662d..4f6e5cc7c2c226e06068742a246da2915db02fe5 100644 (file)
@@ -40,6 +40,7 @@
 // Global Asymptote definitions go here.
 //texpreamble("\documentclass{drexel-thesis}");
 //usepackage("packages");
+defaultpen(fontsize(10));  // match drexel-thesis's default 10pt font size
 \end{asydef}