I’m new to Typst and would like to use angle brackets for vectors, however, I want to minimize the syntax.
In LaTeX, I use the following:
\newcommand{\anglebr}[1]{\left\langle{#1}\right\rangle}
I tried to do something similar in Typst:
#let anglebr(body) = $lr(chevron.l #body chevron.r)$`
This seems to work for a single parameter, e.g., $anglebr(x)$, but it does not work for multiple: $anglebr(x, y)$. Am I doing anything wrong, and is there an easy way to fix this?
