Arno Gourdol

Results 274 comments of Arno Gourdol

Those are excellent test cases, thank you! `x_{1,2}` is a particularly interesting one: the comma is a valid inter-digit separator (as in "1,234.56") but of course I should be a...

Yes, it's considered a punctuation character and so has a small padding on its right. Note also that you can configure which character (or rather which LaTeX command sequence) is...

That's a great question... One option would be to parse this as `['And', ['LessEqual', 1, 2], ['Less', 2, 3'], ['LessEqual', 3, 4]]`...

That could be `['Inequality', 0, ['LessEqual', a], ['Less', b], ['LessEqual', 10]]`. It could work, but it introduces a completely new function, so it's something that needs to be handled. And...

Yes, that could work as well. BTW, `["Less"]` is a valid MathJSON expression: it's the partial application of the `Less` function to no arguments (`["Less", 0]` is the partial application...

Well, a bit of consistency to start would be nice, wouldn't it :) There are actually two LaTeX parsers involved. The one in MathLive core, and the other in the...

Great examples! Thank you. For some of them, I'm going to have to think a bit about what the proper MathJSON should be, unless you have some suggestions (`f:[a,b]\to\R` for...

Thank you for investigating this issue and submitting this PR. The Compute Engine codebase is undergoing a refactor which unfortunately makes merging this PR directly a little bit tricky. However,...