-
Notifications
You must be signed in to change notification settings - Fork 0
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
Allow the use of custom operator/function name #1
Comments
OK. I will try to make this work |
After looking into KaTex documentation, the correct way to make it work is to use From my template, I know at least the following operator are default in typst but not in LateX :
Ideally, we should compare https://katex.org/docs/supported#math-operators and the Typst predefined operators : |
I did a review and the supported ones in typst but not in KaTeX are :
Actually sgn, So I would suggest :
EDIT, I miss it but actually csch is defined in Typst. |
Well, I will try to improve it as the following:
|
The improvement described above has been applied. Check it in the Web App. |
I would like to convert a mathematical expression with
sech
inside.sech
is actually a typst function but not a LaTeX one, so in the LaTeX code, I need to add\DeclareMathOperator{\sech}{sech}
.It would be nice if this was taken into account by the convertor. Right now, I need to do additionnal pre and post processing to achieve the correct conversion.
The text was updated successfully, but these errors were encountered: