Advertisement
AMFeldman

glatex-beeline.sh

Jan 26th, 2016
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. wget -O $2.tex "https://docs.google.com/document/export?format=txt&id=$1";
  4. bom-remove.sh $2.tex;
  5. #latexmk -pdf -f -interaction=nonstopmode $2.tex;
  6. cp $2.tex temp.tex;
  7. texscrip.sh $2;
  8. rm temp.tex;
  9. evince $2.pdf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement