🐼

【Typst】ディスプレイ数式とインライン数式のフォントサイズをそれぞれ変更する方法

に公開
2
<!-- block: true はディスプレイ数式のこと -->
#show math.equation.where(block: true): set text(size: 14pt)
<!-- block: false はインライン数式のこと -->
#show math.equation.where(block: false): set text(size: 12pt)

これで、ディスプレイ数式は14ptに、インライン数式は12ptになるはずです。
もし何か間違い等あれば、コメントでお願いします。

参考文献
https://forum.typst.app/t/how-to-automatically-adjust-size-of-mathematical-expressions-in-inline-math/2796

Discussion

likiliki


どちらもコメントがtrueになってます

ぱんだぱんだ

ありがとうございます!
修正させて頂きました!