Skip to content

如何实现 mathscr 的花体符号?

如何实现 mathscr 的花体符号?

可用如下办法实现 LaTeX 的\mathscr花体。

局部使用

typst
#let scr(it) = text(
  stylistic-set: 1,
  box($cal(it)$),
)

We establish $cal(P) != scr(P)$.
Typst compiled image

来源:cal - Variants Functions – Typst Documentation

全局设置

typst
#set text(stylistic-set: 1)

$ cal(L){f(t)} = integral_(t = 0)^oo f(t) e^(- s t) dif t $
Typst compiled image
What do you think?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
Comments
  • Latest
  • Oldest
  • Hottest
Powered by Waline v3.5.1

基于 MIT 许可发布