From: W. Trevor King Date: Thu, 25 Feb 2010 15:35:00 +0000 (-0500) Subject: Moved figures/contour/contour.asy to asyfig workflow X-Git-Tag: v1.0~432 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4bc8c781cfed771e71c0d8e16e074c815f5646af;p=thesis.git Moved figures/contour/contour.asy to asyfig workflow --- diff --git a/tex/src/cantilever-calib/contour_integration.tex b/tex/src/cantilever-calib/contour_integration.tex index 591b575..1bcb399 100644 --- a/tex/src/cantilever-calib/contour_integration.tex +++ b/tex/src/cantilever-calib/contour_integration.tex @@ -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$ diff --git a/tex/src/figures/contour/Makefile b/tex/src/figures/contour/Makefile index 8936b13..fd32acd 100644 --- a/tex/src/figures/contour/Makefile +++ b/tex/src/figures/contour/Makefile @@ -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, %, $<)