Welcome to formula-editor :waving_hand:
基于百度 kityformula-editor 开发的公式编辑器,有 android 和 web 两种模式
安装依赖
npm install
npm install -g anywhere // 随启随用的静态服务器
使用
grunt build
anywhere -p {port} // 这里anywhere是为了开静态服务器,预览index.html
以 web 为例,url 中传入?device=pc&protocol=documentEvent,然后运行项目。点击键盘中的字符,即可生成对应 latex 公式,点击”确定“按钮导出公式,控制台可以通过以下代码拿到最终的 latex 值和相应的 base64 图片。
document.addEventListener('documentMessage', (e) => {
co
1