[XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread ShreeDevi Kumar
Hi, I am using commands similar to the following for processing the sanskrit documents using xelatex - xelatex "\def\istwocol{1} \input{./tmpmyfile.tex} -max-print-line=2048 -c-style-errors -interaction=batchmode" However, I still get a large amount of verbose output on terminal, regarding lo

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread Zdenek Wagner
Append >/dev/null in unix systems or >null in Windows, it will send all terminal output to a black hole. Zdeněk Wagner http://ttsm.icpf.cas.cz/team/wagner.shtml http://icebearsoft.euweb.cz 2016-08-01 12:42 GMT+02:00 ShreeDevi Kumar : > Hi, > > I am using commands similar to the following for pro

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread Philip Taylor
Zdenek Wagner wrote: > Append >/dev/null in unix systems or >null in Windows, it will send > all terminal output to a black hole. Er, yes, but is that what ShreeDevi meant by "reduce" ? "Reduce" and "eliminate" are not the same, IMHO. Is there any parameter that can be used to control LaTeX's

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread Bruno Le Floch
On 08/01/2016 12:51 PM, Zdenek Wagner wrote: > Append >/dev/null in unix systems or >null in Windows, it will send > all terminal output to a black hole. > > Zdeněk Wagner > http://ttsm.icpf.cas.cz/team/wagner.shtml > http://icebearsoft.euweb.cz > > > 2016-08-01 12:42 GMT+02:00 ShreeDevi Kumar :

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread ShreeDevi Kumar
Worked like a charm. Thank you! ShreeDevi भजन - कीर्तन - आरती @ http://bhajans.ramparivar.com On Mon, Aug 1, 2016 at 4:21 PM, Zdenek Wagner wrote: > Append >/dev/null in unix systems or >null in Windows, it will send > all terminal ou

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread ShreeDevi Kumar
I will give this a try too. ShreeDevi भजन - कीर्तन - आरती @ http://bhajans.ramparivar.com On Mon, Aug 1, 2016 at 4:33 PM, Bruno Le Floch wrote: > On 08/01/2016 12:51 PM, Zdenek Wagner wrote: > > Append >/dev/null in unix systems or >n

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread Bruno Le Floch
On 08/01/2016 01:01 PM, Philip Taylor wrote: > > > Zdenek Wagner wrote: >> Append >/dev/null in unix systems or >null in Windows, it will send >> all terminal output to a black hole. > Er, yes, but is that what ShreeDevi meant by "reduce" ? "Reduce" and > "eliminate" are not the same, IMHO. Is

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread ShreeDevi Kumar
> > ​ > xelatex: unrecognized option '-max-print-line=2048' xelatex: unrecognized option '-c-style-errors' This is XeTeX, Version 3.14159265-2.6-0.6 (TeX Live 2016) (preloaded > format=xelatex) restricted \write18 enabled. entering extended mode ​ > ​So using the following minimises the

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread David Carlisle
> xelatex "\def\istwocol{1} \input{./tmpmyfile.tex} -max-print-line=2048 > -c-style-errors -interaction=batchmode" You are applying the options too late so they are ignored. xelatex -max-print-line=2048 -c-style-errors -interaction=batchmode "\def\istwocol{1} \input{./tmpmyfile.tex}" Davi

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread ShreeDevi Kumar
To summarize, I had been using some unrecognized options and was giving them within quotes, so they were not taking effect. I am now using the following: * xelatex -interaction=batchmode -halt-on-error * *​*-interaction=batchmode makes TeX 'quieter', so in a batch file that plus > -halt-on-e

Re: [XeTeX] How to reduce terminal output from xelatex?

2016-08-01 Thread Akira Kakuto
Hi David, > xelatex -max-print-line=2048 -c-style-errors -interaction=batchmode > "\def\istwocol{1} \input{./tmpmyfile.tex}" The option -max-print-line does not exist. The env. variable max_print_line can be used: max_print_line=2048 xelatex -c-style-errors -interaction=... Best, Akira