[…] You can see how this would start to struggle even with high school level maths, with bracketed terms and possibly fractional terms in exponents, integrals, etc.
For example, it is very difficult for me to work out the difference between the following three in typst. That is specifically not what you want from a typesetting language.
1/2(x + y)
1/x(x + y)
1/2^x(x + y)
[…]
I think these are valid complaints. For clarity, this is the output that I found for each:
^[1]^
^[2]^
^[3]^
I was surprised by the second. I expected it to produce . I didn’t know what to expect for the third.
I tried searching through the documentation ^[4]^, but I was unable to find any information that exactly defined expressions ^[5]^, and how they are grouped within the fraction when juxtaposed like in your examples.
References
1. Type: Anecdote. Published: 2026-03-19T07:20Z.
- bash echo “#set page(width: auto, height: auto, margin: 0pt); $ 1/2(x + y) $” | typst compile - o.png
2. Type: Anecdote. Published: 2026-03-19T07:20Z.
- bash echo “#set page(width: auto, height: auto, margin: 0pt); $ 1/x(x + y) $” | typst compile - o.png
3. Type: Anecdote. Published: 2026-03-19T07:20Z.
- bash echo “#set page(width: auto, height: auto, margin: 0pt); $ 1/2^x(x + y) $” | typst compile - o.png
4. Type: Webpage. Title: “typst Documentation”. Publisher: “Typst”. Accessed: 2026-03-19T07:25Z. URI: typst.app/docs/.
5. Type: Text. Publisher: [Type: Webpage. Publisher: “Typst”. Title: “frac”. URI: typst.app/docs/reference/math/frac/.]. Accessed: 2026-03-19T07:26Z. Location: §“Syntax”.
- > […] Use a slash to turn neighbouring expressions into a fraction. […]
- The quote mentions that the components within the fraction are called expressions.