-
Notifications
You must be signed in to change notification settings - Fork 52
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Description
The dfx expression did not work: \int_1^8\!5\,\mathrm{d}x
Steps to Reproduce
(Required) Provide steps that are specific and repeatable
- Add expression:
\int_1^8\!5\,\mathrm{d}xto amath field - Using
CEto evaluate the value:const expr = expression.N() - Try to get the value as below:
const expr = expression.N();
console.log("expr.toString()", expr.toString());
if (expr.numericValue) {
return `${expr.value}`;
} else {
return "unknown-error";
}
Actual Behavior
(Required) What happened when you followed the steps above?
I got: Uncaught Error: Symbol cannot be defined: no scope available
Expected Behavior
(Required) What did you expect to happen instead? It may be obvious to you what should have happened, but if you don't state it explicitly it may not be obvious to others.
There should be no error and the result should be 35.
Environment
MathLive version : 0.9.6
Operating System _macOS, Android
Browser Chrome/Webview
P/s: The problem gone if I only use this one: \int_1^85
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working