5 latexout.pl - Filters the LaTeX log and output, so that UTF8 stays UTF8.
9 latex I<arguments> | latexout.pl
13 TeX replaces bytes in the range of 0x80 to 0x9F by ^^xx
14 sequences. This filter restores them.
18 Only complete lines are parsed, so when TeX wants input, the prompt is
23 Dominique Unruh <I<dominique@unruh.de>>.
27 The LaTeX package B<ucs.sty>.
34 s/\^\^([0-9a-f]{2})/chr hex $1/egi;