asciimath / asciimathml

A new home for asciimathml
http://asciimath.org/
MIT License
957 stars 183 forks source link

how to use any name for variables? #100

Closed sibelius closed 5 years ago

sibelius commented 5 years ago

https://github.com/tylerlong/asciimath-to-latex/issues/5

I'd like to have a formula like this:

2*(ind) + 3*(comum)

but the result is this:

2⋅(∈d)+3⋅(coμm)

is there a syntax to avoid parsing ind and comum ?

davidfarmer commented 5 years ago

You can put the words in quotes to treat them as a unit of text:

2("ind") + 3("comum")

On Tue, 8 Jan 2019, Sibelius Seraphini wrote:

tylerlong/asciimath-to-latex#5

I'd like to have a formula like this:

2(ind) + 3(comum)

but the result is this:

2⋅(∈d)+3⋅(coμm)

is there a syntax to avoid parsing ind and comum ?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.[AAM6LPPV0rK8ReV0ce0ghm9AfmLRoOaEks5vBMIEgaJpZM4Z1xvw.gif]

sibelius commented 5 years ago

tks