本文介绍了有没有javascript LaTeX方程式渲染器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找一个纯粹的客户端javascript库,将乳胶方程式呈现为HTML / CSS。我讨厌所有我看到的是从服务器请求图像的实用程序。

I am looking for a purely client side javascript library that renders latex equations as HTML/CSS. I hate that all I see are utilities that request an image from a server.

示例用法:

latex('\frac{a}{b}')

输出:

<div style="position: relative; display: inline-block; height: 2em; width: 1em">
  <div style="position: absolute; top: 0em">a</div>
  <div style="position: absolute; top: 1em; border-top: 1px solid black">b</div>
</div>

我问,因为如果这不存在我正在考虑写它,也许作为一个jQuery插件。

I ask because if this does not exist I am considering writing it, perhaps as a jQuery plugin.

推荐答案

呈现TeX论坛。它也被 mathoverflow.net 和数学软件 sage 的Web界面使用。我假设他们知道他们在做什么;)

jsMath renders TeX forumlas. It is also used by mathoverflow.net and the web interface of the mathematics software sage. I assume they know what they are doing ;)

从主页:

这篇关于有没有javascript LaTeX方程式渲染器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 14:40