Hyades - TeX to Unicode/ASCII Math Renderer

Convert LaTeX Formulas to Plain Text

Hyades is a free online mathematical typesetting engine that converts TeX and LaTeX formulas into beautiful Unicode or ASCII art. Unlike traditional LaTeX renderers that produce images or PDFs, Hyades outputs pure text that can be copied anywhere.

Use Cases for Unicode/ASCII Math

  • Source Code Comments: Embed readable mathematical formulas directly in your code comments. Perfect for documenting algorithms, physics simulations, financial models, and scientific computing.
  • Plain Text Documentation: Add beautiful math to README.md files, text documents, and anywhere Markdown or HTML isn't supported.
  • Terminal Applications: Display mathematical output in command-line interfaces without requiring special rendering.
  • Email and Chat: Share formulas in plain text messages where rich formatting isn't available.
  • Accessibility: Text-based math works with screen readers and in low-bandwidth situations.

Supported LaTeX Commands

Hyades supports a comprehensive subset of LaTeX math notation including: fractions (\frac), square roots (\sqrt), integrals (\int, \iint, \iiint, \oint), summations (\sum), products (\prod), limits (\lim), Greek letters (\alpha, \beta, \gamma, \delta, \pi, \sigma, etc.), matrices (\pmatrix, \bmatrix), mathematical operators (×, ÷, ±, ∓, ·), relations (≤, ≥, ≠, ≈, ≡, ∈, ⊂, ⊃), arrows (→, ←, ⇒, ⇐, ↔), and many more symbols.

Example: Quadratic Formula

Input (TeX):
$$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$

Output (Unicode):
        -b ± √(b² - 4ac)
   x = ─────────────────
             2a
        

Example: Gaussian Integral

Input (TeX):
$$ \int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi} $$

Output (Unicode):
  ∞
  ⌠   -x²
  ⎮  e    dx = √π
  ⌡
 -∞
        

Technical Details

Hyades uses a sophisticated typesetting algorithm inspired by TeX, including the Knuth-Plass optimal line breaking algorithm. It runs entirely in the browser using WebAssembly for high performance. No server-side processing or installation required.

Keywords

TeX to Unicode converter, LaTeX to ASCII converter, math in code comments, mathematical typesetting, plain text math renderer, formula to text, Unicode math symbols, ASCII art math, terminal math display, code documentation math, scientific notation converter, how to write math in source code, math formulas for programmers

Hyades Logo

hyades

Unicode/ASCII Mathematical Typesetting (+AI MCP)
untitled.cld
Loading...

Examples Library

Ln 1, Col 1
Hyades v1.0.0

About Hyades

What is Hyades?

Hyades is a mathematical typesetting engine that converts TeX/LaTeX notation into Unicode or ASCII text. Perfect for:

  • Code comments & documentation
  • Terminal/CLI applications
  • Plain text emails & chat
  • README files & wikis

Keyboard Shortcuts

Ctrl+EnterTypeset document
Ctrl+SSave file
Ctrl+OOpen file
Ctrl+NNew tab
Ctrl+WClose tab
Ctrl+TabNext tab

Quick Start

% Set up Unicode output
#comment_char ""
#output_prefix " "

#before_each
\setunicode{true}
\setwidth{70}
#end

@label quadratic
$$ x = \frac{-b \pm \sqrt{b^2-4ac}}{2a} $$
@end

@cassilda: quadratic

Common TeX Commands

\frac{a}{b} - Fraction   \sqrt{x} - Square root   \sum_{i}^{n} - Sum
\int_a^b - Integral   \alpha, \beta, \pi - Greek   \infty - Infinity
\mathbb{R} - Blackboard   \pmatrix{...} - Matrix   \vec{v} - Vector