我需要在我的 Flutter 应用程序中包含一个数学表达式。 我找到了flutter_tex包,例如:
child: TeXView(
teXHTML: r"$$Pole trójkąta = frac{1}{2}ah$$",
loadingWidget: Center(
child: Text("Kalkulacja"),
),
它正在工作,但波兰字母"ą"看起来与其他字体不同。 有什么想法可以添加一些东西来表明它是波兰文本吗?
我认为您将所有内容都放在$$之间,渲染引擎正在尝试渲染所有内容,我建议您使用renderingEngine: TeXViewRenderingEngine.mathjax()
这样做。
r"Pole trójkąta = (frac{1}{2}ah) <br>"
or escape that particular text like
r" $$Pole text{trójkąta} = frac{1}{2}ah$$"