1.0.7 • Published 11 months ago

xmmath v1.0.7

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
11 months ago

xmmath

简介(introduction)

苦 $\LaTeX$ 久矣!

Bitter $\LaTeX$ for a long time!

使用 $\LaTeX$ 输入数学公式,需要键入太多的\{}\frac{}{}。符号命名各种各样。

Using $\LaTeX$ to enter mathematical formulas, you need to type too many \, {} and \frac{}{}. There are all kinds of symbol names.

大家说,要有光,于是typst出现了!尽管他还很新,并且还没那么好,但他的数学输入还是很舒服的。

people said, "Let there be light," so typst appeared! Although he is still new and not that good, his math input is still very comfortable.

千呼万唤使出来,Chrome(>=109) 终于勉强支持部分在 Firefox 中早已支持的MathMl

After thousands of calls, Chrome (> = 109) finally reluctantly supported some of the MathMl already supported in Firefox.

为了在我的笔记软件xlinkote上更好地书写数学公式,我构建了这个 typst 数学语法转 MathMl 的库,并允许引用。

In order to better write mathematical formulas on my note-taking software xlinkote, I built this library of typst mathematical syntax to MathMl and allowed references.

安装(installation)

npm i xmmath
import * as xmmath from xmmath
console.log(xmmath.toMMLHTML("e^(i pi)=-1"))
<script src="./dist/xmmath.umd.js"></script>
<script>
    let div = document.createElement("div");
    div.innerHTML = xmmath.toMMLHTML("e^(i pi)=-1");
    document.body.append(div);
</script>

语法简介(introduction to Syntax)

详细语法请前往typst docs查看。很遗憾由于个人能力有限,只能实现部分语法,并且存在某些表现与 typst 不同。

For more details, please go to typst docs for more information. Unfortunately, due to the limited personal ability, only part of the grammar can be implemented, and some performance is different from that of typst.

  • 数学变量为单个英文字母
  • 函数为多个字母串,可包含.,后可接括号传递参数:sum gt.eq(显示符号) sqrt(2) root(2,4)
  • 字符串使用"包裹,可用\"转义
  • ^_为上下标,数字可连在一起:2^10/为除法,可用函数frac(1,2)。他们可用()消除歧义。

  • Mathematical variables are a single English letter.

  • the function is a string of letters and can contain ., followed by parentheses to pass the parameter: sum gt.eq (display symbol sqrt(2) root(2,4)).
  • string is wrapped with ", and can be escaped with \".
  • ^_is the superscript, and the numbers can be linked together: 2^10. / is division, and the function frac(1,2)is available. They can use ()to disambiguate.

实现的函数(Realized function)

  • accent
  • attach
  • binom
  • cancel (仅支持 inverted 和 cross 参数)
  • cases
  • equation
  • frac
  • lr
  • mat
  • op
  • roots
  • sizes
  • styles
  • underover
  • variants
  • vec
  • \换行
  • &
  • Symbols (no emoji)
  • 变量 (不打算支持)

使用(use)

xmmath.toMMLHTML("e^(i pi)=-1"); // 输出html
xmmath.toMML("e^(i pi)=-1"); // 输出mathml元素
xmmath.init({
    emoji: true, // 默认false false:🇺🇳=>🇺 🇳 true:性能会降低slow 字符类型(string)不影响
});
1.0.7

11 months ago

1.0.6

11 months ago

1.0.5

11 months ago

1.0.4

11 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago