mathlex 0.4.1

Mathematical expression parser for LaTeX and plain text notation, producing a language-agnostic AST
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! LaTeX tokenizer for mathematical expressions.
//!
//! This module provides tokenization of LaTeX mathematical notation into
//! a stream of tokens suitable for parsing.

mod commands;
mod scanner;
mod tests;
mod token_types;

pub use scanner::tokenize_latex;
pub use token_types::LatexToken;