Skip to content

Instantly share code, notes, and snippets.

@xqms
Created May 16, 2011 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xqms/974414 to your computer and use it in GitHub Desktop.
Save xqms/974414 to your computer and use it in GitHub Desktop.
PdfLatex, Bibtex and Chapterbib
#!/bin/bash
find . -name '*.aux' -print0 | xargs -0 rm
pdflatex report
dirs="dir1 dir2 dir3"
for dir in $dirs; do
for f in $dir/*.aux; do
bibtex $f
done
done
pdflatex report
pdflatex report
echo 'Done'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment