Lazy Latex Flow
To get rid of all the annoying compile commands during the daily work with latex, i wrote a little bash script. The following commands were necessary to create the latex document. They should work on all common linux systems:
1 2 3 4 5 6 7 |
pdflatex -interaction nonstopmode 1_base.tex bibtex 1_base makeglossaries 1_base makeindex -q -s special.ist 1_base.idx makeindex -q 1_base.nlo -s nomencl.ist -o 1_base.nls pdflatex -interaction nonstopmode 1_base.tex pdflatex -interaction nonstopmode 1_base.tex |