Hi,
I’m trying to insert the P symbol in calligraphy font (see example below) in typst and I don’t see it in the symbols list. I do see something similar for $Re$ but not for P. Is the calligraphy font (like \mathcal in LaTeX) available in Typst?
$Re$
\mathcal
You can use $cal(P)$ for this - it’s not considered a symbol (even if that would be possible) instead a variant letter style from the math font.
$cal(P)$
Amazing, this was exactly what I was looking for, thank you!