I am using
mactex
to compile my .tex file. I want to
suppress all error and warning messages.
I have tried this using the below commands but none of them work:
Xelatex
xelatex report.tex --interaction=errorstopmode;
xelatex report.tex --interaction=batchmode
pdflatex
pdflatex report.tex --interaction=batchmode;
pdflatex report.tex -quiet -f;
pdflatex report.tex -quiet=true;
pdflatex report.tex -interaction=nonstopmode;
Please help me figure out what should I do to stop all errors and warnings. My file compiles how I want it to, I don't want it to show me any messages, just compile in one line.
Thanks in advance.