Haris, cool. thanks for helping! yea, now you got me into this bash-scripting thing.. based on your hint i adjusted the compile-section in the "typesed and view" command and it seems to work now. thanks again!
# Compile. run_tex "$FILE" 2>&1| latexErrWarnHtml.py -v # If there is a "nlo" nomencl-file, then run makeindex and compile again if [ -e "${M%.*}.nlo" ]; then makeindex "${M%.*}.nlo" -s nomencl.ist -o "${M%.*}.nls" run_tex "$FILE" 2>&1| latexErrWarnHtml.py -v fi RC=$? if [[ $TEX_PSTRICKS ]]; then dvips "$DVI" -o "$PS" && ps2pdf "$PS" fi