9 lines
195 B
Text
9 lines
195 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
find -name \*.aux -exec rm {} \;
|
||
|
|
rm BEAVRS.bbl
|
||
|
|
pdflatex -interaction nonstopmode BEAVRS
|
||
|
|
bibtex BEAVRS
|
||
|
|
pdflatex -interaction nonstopmode BEAVRS
|
||
|
|
pdflatex -interaction nonstopmode BEAVRS
|