8 lines
78 B
Bash
Executable File
8 lines
78 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm *.aux
|
|
pdflatex $1.tex
|
|
bibtex $1
|
|
pdflatex $1.tex
|
|
pdflatex $1.tex
|