=head1 NAME Text::AsciiTeX - Convert (La)TeX formulas to ASCII art =head1 SYNOPSIS use Text::AsciiArt; my $text_array = render('\frac{1}{e}'); print "$_\n" for @$text_array; =head1 DESCRIPTION This module provides a mechanism to render (La)TeX formulae to ASCII art. It is based solely on F written by Bart Pieters (See L). =head1 EXPORTED FUNCTION This module exports the C function. =head2 render The function C accepts a string containing a formula in (La)TeX formatting. The return value is an array reference. Each element of the array is a string for each row of the art. Printing each line, terminated by a newline will probably do what you expect. For examples and a list of allowed syntax read L. =head1 UNDERLYING TECHNOLOGIES This module is basically just a C-level Perl wrapper of F written by Bart Pieters. That project is hosted at L. F in turn was a fork of F which was written by Przemek Borys. This module owes a debt of thanks to both authors. =head1 SOURCE REPOSITORY L =head1 AUTHOR Joel Berger, Ejoel.a.berger@gmail.comE =head1 COPYRIGHT AND LICENSE Copyright (C) 2012 by Joel Berger This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.