Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/larseggert/asciitex
Fork of http://asciitex.sourceforge.net/ with several improvements. But you should really be using https://github.com/bartp5/libtexprintf!
https://github.com/larseggert/asciitex
ascii-art ascii-graphics latex mathjax
Last synced: 3 months ago
JSON representation
Fork of http://asciitex.sourceforge.net/ with several improvements. But you should really be using https://github.com/bartp5/libtexprintf!
- Host: GitHub
- URL: https://github.com/larseggert/asciitex
- Owner: larseggert
- License: gpl-2.0
- Created: 2020-11-25T09:51:06.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-30T11:33:02.000Z (almost 2 years ago)
- Last Synced: 2023-03-01T17:41:56.097Z (almost 2 years ago)
- Topics: ascii-art, ascii-graphics, latex, mathjax
- Language: C
- Homepage:
- Size: 341 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# You should be using [utftex](https://github.com/bartp5/libtexprintf)!
It is actively supported and produces better output than this.
---
# asciiTeX
asciiTeX is an ASCII equation renderer released under the terms of the GNU
General Public License. The program can generate ASCII art representations of
mathematical equations. You can use asciiTeX to quickly insert equations in,
e.g., emails or comments in your source code. The syntax is similar to LaTex.
The asciiTeX project is a fork of eqascii, providing new features and many bug
fixes to the original program.## Changes
This is a fork of [Bart Pieters' asciiTeX](http://asciitex.sourceforge.net/)
that focuses on improving compatibility with
[tex2svg](https://github.com/Ximik/tex2svg), for use with
[kramdown-rfc2629](https://github.com/cabo/kramdown-rfc2629) to produce prettier
math for [IETF](https://ietf.org/) specifications.Specifically, these changes were made (so far):
- Unicode support
- support for `<>` braces
- support for `\eft\` and `\right`
- support for `\text` and `\mathrm`
- support for `\binom`
- better automatic whitespace insertion/removal
- remove trailing whitespaces from output
- switch build system to cmake
- removal of the GUI
- fix numerous minor bugsThere are very likely many [tex2svg](https://github.com/Ximik/tex2svg) features
still missing from this fork of asciiTeX. There are also very likely still many
remaining bugs. I'd be happy to see issues filed and pull-requests opened to
further improve this software.## Installing from sources
~~~ shell
git clone https://github.com/larseggert/asciiTeX.git
cd asciiTeX
mkdir build
cd build
cmake ..
cmake --build .
~~~