August

Results 7 comments of August

Yeah that's definitely a problem. Something like `x_0 + x_1` shouldn't equal `2x`. Do you have any ideas about what symbol name would be returned by `B_{\\nu}`? Maybe `B_nu`...

Yeah parsing those is a real pain. The problem is that people expect something like `\int a + b dx` to be handled by the parser, when really `\int (a...

Yeah, there are a bunch of non-essential commands like `\right` that have to be ignored. I hadn't noticed that exponents are so broken (I'm sure they worked better at one...

The exponent problem is fixed: https://github.com/augustt198/latex2sympy/commit/f569090ad174a9b1b3d2cba5481c65e93b599ce3

Right now numbers like 1,300,400 are parsed as 1300400. Implementing commas as decimal points would make something like 1,356 ambiguous. Maybe this should be handled by passing a configuration to...

Maybe `\pm` should be blacklisted as an invalid symbol because it produces such an unexpected result. In regards to `\blabla` or something like that, I don't think it's a good...

Sounds great, I'd love to add this to SymPy! Should I create a pull request?