I have a document which throws some errors, but I am satisfied with the end result. To avoid stopping at these harmless errors, I execute the following commands:
pdflatex -interaction=nonstopmode texFile
bibtex texFile
pdflatex -interaction=nonstopmode texFile
pdflatex -interaction=nonstopmode texFile
I want to automate it using arara. My tex file contains the following markup:
% arara: pdflatex: {interaction: nonstopmode}
% arara: biber
% arara: pdflatex: {interaction: nonstopmode}
% arara: pdflatex: {interaction: nonstopmode}
I run arara as arara -v texFile to see the detailed output. The first directive runs, however it stops executing the other three commands due to the error during the compilation. The manual for arara 4.0 states that
"As previously mentioned in Section 2.1, on page 8, if a task fails, arara will halt the entire execution at once and immediately report back to the user."
Can this somehow be circumvented so that the subsequent directives are also executed?