mathgpt-render
v1.1.0
Published
mathgpt 数据渲染
Downloads
637
Readme
mathgpt 公式渲染
使用示例
import mathRender from 'mathgpt-render'
// 初始化mathjax
await mathRender.init()
// 表格渲染
// 公式渲染
mathRender.renderLatex('$$\\frac{2}{3}$$', {
needCheck,// 是否需要检测,默认false
isLast, // 回答是否完毕,默认true
isCalc, // 是否为数值助手,默认false,
tableOption,
})
tableOption结构如下
{
tableClass: 'latex-table',
headerClass: '',// 指定表头的样式className
tdClass: '', //指定单元格的样式className
isShowTdForFirstRow: true,// 是否显示第一行的单元格,true: 显示为th,false: 显示为td
}
需要在浏览器环境下使用