This module provides a mechanism to render (La)TeX formulae to ASCII art. It is based solely on F<AsciiTeX> written by Bart Pieters (See L</"UNDERLYING TECHNOLOGIES">).
=head1 EXPORTED FUNCTION
This module exports the C<render> function.
=head2 C<< render( $latex[, $columns] ) >>
=head3 Argument(s)
The function C<render> accepts a string containing a formula in (La)TeX formatting. Optionally, an integer may be givento specify the number of columns forthe output or zero forno-breaking. The defaultnumber of columns is 80.
=head3 Return
Since version 0.03 the returnvalue is context aware.
=over
=item *
In list context, C<render> returns a list whose elements are strings, one foreachrow of the art. Printing eachline, terminated by a newline will probably dowhat you expect.
=item *
In scalarcontext, C<render> will returna string of the concatenated lines, eachended witha newline.
=item *
In void context, C<render> will printthe scalarcontext returndirectly to the C<select>ed file handle (usually C<STDOUT>).
=back
=head1 EXAMPLES
For useexamples see L</SYNOPSIS>. For a list of allowed syntax and syntax examples readL<Text::AsciiTeX::Syntax>.
=head1 UNDERLYING TECHNOLOGIES
This module is basically just a C-level Perl wrapper of F<AsciiTeX> written by Bart Pieters. That project is hosted at L<http://asciitex.sourceforge.net/>. F<AsciiTeX> in turn was a forkof F<eqascii> which was written by Przemek Borys. This module owes a debt of thanks to both authors.