Moved figures/contour/contour.asy to asyfig workflow
authorW. Trevor King <wking@drexel.edu>
Thu, 25 Feb 2010 15:35:00 +0000 (10:35 -0500)
committerW. Trevor King <wking@drexel.edu>
Thu, 25 Feb 2010 15:35:00 +0000 (10:35 -0500)
tex/src/cantilever-calib/contour_integration.tex
tex/src/figures/contour/Makefile

index 591b5752ed0bb46fefd5378a6eeef5c20c5d0466..1bcb399237a0532f5038b1ee7c6c6b317e93bea3 100644 (file)
@@ -1,11 +1,9 @@
 \section{Contour integration}
 
 \begin{figure}
-  \begin{centering}
-    \includegraphics[width=0.3\textwidth]{figures/contour/contour} \\
-    \caption{Integral contour \C\ enclosing the upper half plane.}
-    \label{f.UHP_contour}
-  \end{centering}
+  \asyfig{figures/contour/contour}
+  \caption{Integral contour \C\ enclosing the upper half plane.
+    \label{f.UHP_contour}}
 \end{figure}
 
 As a brief review, some definite integrals from $-\infty$ to $\infty$
index 8936b1392c149c55f5f188da765a6a981aa598de..fd32acdf9ea0469b719e78d42e8c1d5914bfdd39 100644 (file)
@@ -1,7 +1,14 @@
-all : contour.pdf
+ASYPROCESS = ../asy/asyprocess \
+  --texinputs=../.. \
+  --pretex='\documentclass{drexel-thesis} \input{packages}' \
+  --
+
+FIGS = contour
+
+all : $(FIGS:%=%_.tex)
 
 clean :
-       rm -f contour.pdf
+       rm -f $(FIGS:%=%_*) $(FIGS:%=%-*)
 
-contour.pdf :
-       asy -f pdf contour.asy
+%_.tex : %.asy
+       $(ASYPROCESS) $(patsubst %.asy, %, $<)