How to have more named spaces in math mode?

You can always define variants in your document! If you would like to discuss whether more named spaces should be added by default, then you should probably reach out on Discord (maths forge), or open an issue directly on https://github.com/typst/typst/issues/.

#let double = h(0.5em)
#let triple = h(0.75em)
#table(
  columns: 3,
  align: left,
  "thin", "3/18em~0.16em", $a thin b$,
  "med", "4/18em~0.22em", $a med b$,
  "thick", "5/18em~0.27em", $a thick b$,
  "double", "0.5em", $a double b$,
  "triple", "0.75em", $a triple b$,
  "quad", "1em", $a quad b$,
  "wide", "2em", $a wide b$,
)

image

1 Like