-
Notifications
You must be signed in to change notification settings - Fork 6
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
Operations with functions #57
Comments
Thank you @eagarciam ! I am able to reproduce the issue. |
When will you expectedly release the new version with this fix? :) |
Hi 👋 Also, if you like this project, please consider giving it a star ⭐️ |
Thanks so much for this update :) With your help you are empowering one of the biggest math websites in Austria to learn math online especially during home tutoring :) |
Cool ! Happy to help 😄 |
Hi, it is app.studyly.com :) - you can test it out by clicking on the blue button :D |
Nice! Looks like a solid project. Please give me a heads up when you have finished the implementation (or if you encounter any bugs 😉). |
Hi, glad you liked it :D it is currently used by over 10 000 students in Austria - will then send you some teacher and student accounts for you to test it out :D Just a quick question: When a user types in e.g. 3++, we send him that his input is not syntactically correct. Is it possible to show him the part where he made the mistake, e.g. only mark the "++" section? |
Sounds great! 👍
Assuming you are talking about the error checking done by TeX2Max, then the answer is unfortunately no. There is currently no built-in support for this. The only help you get is a description of the error (although, they are quite detailed). The problem is that the lib currently lacks a proper internal tree. If we had this in place, I believe the location-marking of errors would be simple to implement. A tree structure is therefore high on the todo list. But this would require a complete rewrite of the library, and I don't have time for this right now 😅. However, it might be doable to implement location-marking of errors without any tree support... If you create a new issue with a proper description of the desired functionality, I might be able to take a look at it (but no promises) 😄 |
KK will add an issue :) Thank you so much!!! Nice greetings from Vienna and all the best! |
Same issue with LaTeX |
Yes, I can confirm this is indeed a bug 🐛 . Will fix it by next release 😉 |
When i use LaTeX expressions like
'\\sin(x)+\\cos(x)'
, the produced output is'sin(x)cos(x)'
, but the output should be'sin(x)+cos(x)'
; the same happends with operators like+,-,*,/
and expressions like\\sin(x)+\\cos(x)+...+\\tan(x)
or\\sin(x)+\\frac{3x}{2}
. It seems that only happens when the LaTeX expression have a trigonometric function and later an operator.The text was updated successfully, but these errors were encountered: