this repo has no description

arxiv script

+18
+18
arxiv.sh
··· 1 + #!/bin/bash 2 + 3 + rm -rf arxiv-staging arxiv.zip 4 + 5 + latexmk -pdf paper 6 + 7 + ## The following will remove all the comments from paper, and also in-line all the included TeX files 8 + latexpand --empty-comments paper.tex > paper-stripped.tex 9 + 10 + mkdir arxiv-staging 11 + mv paper-stripped.tex arxiv-staging/paper.tex 12 + cp paper.bbl arxiv-staging/paper.bbl 13 + cp -rf *.sty arxiv-staging 14 + 15 + cd arxiv-staging 16 + zip -r ../arxiv.zip . * 17 + cd .. 18 + rm -rf arxiv-staging