5 releases (3 breaking)

0.4.0 Dec 27, 2023
0.3.1 Dec 22, 2023
0.3.0 Dec 22, 2023
0.2.0 Dec 15, 2023
0.1.0 Aug 19, 2023

#121 in Graphics APIs

Download history 1/week @ 2023-12-29 1/week @ 2024-01-12 50/week @ 2024-01-19 1/week @ 2024-02-23 42/week @ 2024-03-01 7/week @ 2024-03-08 2/week @ 2024-03-15 41/week @ 2024-03-22 25/week @ 2024-03-29 8/week @ 2024-04-05

74 downloads per month

Apache-2.0

105KB
2.5K SLoC

Build CI Documentation Crates

mathemascii - AsciiMath parser

This is a parser for AsciiMath written in Rust.

Usage

The API of this crate is designed to be as straight forward as possible. Here's an example:

let input = "sum_(i=0)^(k * 2) a^k";

// Creates an iterator over the input that yields expressions
let ascii_math = mathemascii::parse(&input);

// renders the expressions into a single `<math>` block with the default renderer
let math_ml = mathemascii::render_mathml(ascii_math);

println!("{math_ml}");

The mathemascii uses alemat as the underlying crate for generating the MathMl output.

There's also the API where you can use custom alemat::Writer for rendering:

let input = "sum_(i=0)^(k * 2) a^k";

// Creates an iterator over the input that yields expressions
let ascii_math = mathemascii::parse(&input);

// create a writer, here we use the default writer.
let mut writer = BufMathMlWriter::default();

// renders the expressions into a single `<math>` block and writes it into the buffer of the writer.
let _ = mathemascii::write_mathml(ascii_math, &mut writer);

// get the inner buffer of the writer
let math_ml = writer.into_inner();

println!("{math_ml}");

For convenience, the mathemascii::write_mathml function returns the Result with Result::Ok containing the mutable reference to Writer passed in as the second parameter. This allows for in-place init of Writer and manipulation:

let input = "sum_(i=0)^(k * 2) a^k";

// Creates an iterator over the input that yields expressions
let ascii_math = mathemascii::parse(&input);

// Write the expressions into a single `<math>` block with the given writer
let math_ml = mathemascii::write_mathml(ascii_math, &mut BufMathMlWriter::default())
    .map(|w| w.finish()) // finish writing and output the buffer
    .unwrap(); // unwrap the result

The default writer used is the BufMathMlWriter from alemat. This writer uses a String for its buffer, and writing into it is infallible. Therefore, it uses the Infallible so it's always safe to unwrap the result. If you use a custom Writer implementation, you may want to handle the error case.

Examples

The code shown in the usage section produces the following output:

<math>
<munderover>
  <mo></mo>
  <mrow>
    <mphantom><mo>{</mo></mphantom>
    <mi>i</mi><mo>=</mo><mn>0</mn>
    <mphantom><mo>}</mo></mphantom></mrow>
  <mrow>
    <mphantom><mo>{</mo></mphantom>
    <mi>k</mi><mo></mo><mn>2</mn>
    <mphantom><mo>}</mo></mphantom>
  </mrow>
</munderover>
<msup>
  <mi>a</mi>
  <mi>k</mi>
</msup>
</math>

which produces the following rendering in browsers:

$$\sum_{n = 0}^{k * 2}{a^k}$$

Dependencies

~165KB