<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
Hi all,
<div class=""><br class="">
</div>
<div class="">This applies only to those of you using scons to build the pdf file. I find the default log of pdflatex quite annoying and hard to follow. </div>
<div class=""><br class="">
</div>
<div class="">If you replace the SConstruct lines with these (change ltcc.tex to your main source tex file):</div>
<div class=""><br class="">
</div>
<div class="">
<div class="">env = Environment(PDFLATEXFLAGS = "-halt-on-error") # stops log where error occurs</div>
<div class="">env['ENV']['max_print_line']='1048576' # log output does not break single lines into multiples</div>
<div class="">env.Command('ltcc.pdf', 'ltcc.tex', "pdflatex $SOURCE > /dev/null; bibtex $SOURCE ; pdflatex $SOURCE")</div>
</div>
<div class=""><br class="">
</div>
<div class="">the log will be better. Let me know if you need any help with it.</div>
<div class=""><br class="">
</div>
<div class="">Mauri</div>
<div class=""><br class="">
</div>
</body>
</html>