Open4
Typst 逆引きメモ 自分用
最近ゼミの資料をTypstでがんばってるので、使った関数とかを自分用にメモっておく
矢印の上に文字を乗せたいとき
$attach(arrow, t: c)$
なにかの周りに文字をくっつけたいときに使えるっぽい
Math mode の中で斜体じゃない文字を入れたいとき
$T in "Table(Res)"$
直感的ですねえ
独自の関数を定義したいとき
#let carrow = {
math.attach(math.arrow, t:"c")
}
$q carrow q' arrow.b$
math mode の時は attach
だけで呼べたけど、関数定義するところは math mode じゃないので math.attach
と書くのが注意だね