jeanas
August 9, 2026, 12:56am
1
This code:
$ union.big_n U_n = union.big_n {x ∈ X | f(x) ∈ V_n} $
renders like this in the latest release (0.15.1):
The spacing after ⋃ looks too tight to me, especially before the opening brace. What would be the cleanest way to increase it globally? Also, should I open an issue about this?
Y.D.X
August 9, 2026, 10:44am
2
Actually, this is consistent with LaTeX.
xelatex + Computer Modern:
xelatex + unicode-math + New Computer Modern:
main.tex
\documentclass{article}
% \usepackage{unicode-math}
% \setmathfont{NewCMMath-Regular.otf}
\begin{document}
\begin{equation}
\bigcup_n U_n = \bigcup_n \{x \in X \mid f(x) \in V_n\}
\end{equation}
\end{document}
You can check math classes (Typst docs , Unicode docs ) by visiting General Symbols - Typst Documentation and search and click the symbols.
In §18 of the TeXbook, the spacing between large (Op) and opening (Open) is indeed zero.
I don’t know why, however…
3 Likes