Automated merge with https://tqft.net/hg/blob/
authorScott Morrison <scott@tqft.net>
Sun, 14 Nov 2010 19:43:47 -0800
changeset 634 f699e8381c43
parent 623 53aed9fdfcd9 (current diff)
parent 633 2906548b2a95 (diff)
child 635 bf613e5af5a3
Automated merge with https://tqft.net/hg/blob/
pnas/pnas.tex
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pnas/build.xml	Sun Nov 14 19:43:47 2010 -0800
@@ -0,0 +1,82 @@
+<!-- This is an Ant build file; you'll need to install Ant before using it. -->
+<project name="pnas" default="usage">
+    <target name="init">
+      <property name="arxivTarFile" value="pnas.tar"/>
+    </target>
+
+    <!-- USAGE -->
+    <!-- Instructions for using the build file -->
+    <!-- =================================================================== -->
+    <target name = "usage" depends = "init">    
+        <echo message = ""/>
+        <echo message = "blob build instructions"/>
+        <echo message = "-------------------------------------------------------------"/>
+        <echo message = ""/>
+        <echo message = " available targets are:"/>
+        <echo message = ""/>
+        <echo message = "   arxiv --> builds blob.tar.gz, for submission to the arxiv"/>
+        <echo message = "   pdf   --> builds blob.pdf"/>
+        <echo message = ""/>
+        <echo message = "-------------------------------------------------------------"/>
+        <echo message = ""/>  
+    </target>
+    <!-- =================================================================== -->    
+
+    <target name="clean" depends="init">
+        <delete>
+            <fileset dir=".">
+                <include name="*.toc"/>
+                <include name="*.log"/>
+                <include name="*.aux"/>
+                <include name="*.blg"/>
+                <include name="*.xyc"/>
+                <include name="*.out"/>
+            </fileset>
+        </delete>
+    </target>
+
+    <target name="arxiv" depends="clean">
+        <delete file="${arxivTarFile}"/>
+        <delete file="${arxivTarFile}.gz"/>
+        <tar destfile="${arxivTarFile}" basedir="." includes="**"
+            excludes="*.synctex*,*.dvi,*.ps,pnas.pdf,*.png,${arxivTarFile},${arxivTarFile}.gz,sandbox.*,bibliography/**,papers/**,talks/**,diagrams/obsolete/**,diagrams/latex2pdf/**,text/obsolete/**,.hg/**"
+        />
+        <gzip src="${arxivTarFile}" destfile="${arxivTarFile}.gz"/>
+        <delete file="${arxivTarFile}"/>
+    </target>
+
+    <target name="bbl" depends="init">
+        <exec executable="pdflatex">
+            <arg value="pnas"/>
+        </exec>
+        <exec executable="bibtex">
+            <arg value="pnas"/>
+        </exec>
+    </target>
+     
+    <target name="pdf" depends="bbl">
+        <exec executable="pdflatex">
+            <arg value="pnas"/>
+        </exec>
+    </target>
+    
+    <target name="copy-pdf" depends="pdf">
+        <exec executable="svn" dir="../../../Sites/tqft.net/papers/">
+            <arg value="up"/>
+	    <arg value="--accept"/>
+	    <arg value="theirs-full"/>
+        </exec>
+        <copy file="pnas.pdf" tofile="../../../Sites/tqft.net/papers/blobs-pnas.pdf"/>
+        <exec executable="svn" dir="../../../Sites/tqft.net/papers/">
+            <arg value="commit"/>
+            <arg value="-m"/>
+            <arg value="pnas"/>
+        </exec>
+        <exec executable="ssh">
+            <arg value="scottmorrison@tqft.net"/>
+            <arg value="svn"/>
+            <arg value="up"/>      
+            <arg value="tqft.net"/>                  
+        </exec>
+    </target>
+</project>
--- a/pnas/pnas.tex	Sun Nov 14 18:33:03 2010 -0800
+++ b/pnas/pnas.tex	Sun Nov 14 19:43:47 2010 -0800
@@ -96,7 +96,7 @@
 %% For titles, only capitalize the first letter
 %% \title{Almost sharp fronts for the surface quasi-geostrophic equation}
 
-\title{$n$-categories, colimits and the blob complex}
+\title{Higher categories, colimits and the blob complex}
 
 
 %% Enter authors via the \author command.