-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiplication signs being removed by Latex.formatvisual function #89
Comments
Solved it by myself. Inserted this "#" in a string within a function. When calling another function, I replaced the "#" from the string with "123456". The latex command removed the "" from the string within the function. But now I can replace the "123456" with a multiplicationsign afterwards. I do not use that big numbers and the number allows the latex-command to function. |
So you'd want a multiplication sign between an integer and parenthesis ( |
Reopening, as there should be a better way than that workaround. |
Yes. @cdrnet Could be great. If it just did not show it between 2x but everywhere else. Don’t know if this is good everywhere or not.🤷♂️ But sometimes 2(3 + 3x) would be good also. Depends on, who should do the math problems. Children should likely see the 2•(3 + 3x) and growups should see 2(3+3x). It depends. So I should be able to define, when to show and when not to show the multiplication signs. Sent with GitHawk |
When making a latex string from latex.formatvisual the source code somehow changes,
what should output as '2*( 3 +3*x)' to '2(3+3x)'. It writes the latex codes (not shown here).
The point beeing that it is removing the multiplication signs.
I would like it to display the latex code that leeds to this output 2*(3+3x) or 2×(3+3x) or 2⋅(3+3x)
My users on my website can choose between these 3 types of multiplication signs ( *, × and ⋅).
Can this be done? Can I somehow maby define a symbol in the string, that the latex.formatvisual function skips?
I'm sadly not experinced enough to change the source code. Any workaround?
I'm programming in visual basic. I also understand C#, but not F#.
Here's my code:
Hope someone can help me on this.
The text was updated successfully, but these errors were encountered: