Skip to content

Instantly share code, notes, and snippets.

@papachristoumarios
Created August 3, 2019 15:53
Show Gist options
  • Save papachristoumarios/6ff910f737c06f06f2d4c02c3eec778d to your computer and use it in GitHub Desktop.
Save papachristoumarios/6ff910f737c06f06f2d4c02c3eec778d to your computer and use it in GitHub Desktop.
Build LaTeX files fast
#!/bin/bash
# Usage: build.sh filename (without .tex extension)
pdflatex -interaction=nonstopmode -halt-on-error $1.tex &&
bibtex $1.aux &&
pdflatex -interaction=nonstopmode -halt-on-error $1.tex &&
pdflatex -interaction=nonstopmode -halt-on-error $1.tex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment