memo.xight.org

日々のメモ

jsLaTeX - 数式を出力できるjQueryプラグイン

Summary

TeX形式で記述した数式を画像として出力するjQueryプラグイン。

指定したクラス内のテキストを、以下のURLにリクエストしているようだ。
http://latex.codecogs.com/gif.latex

Sample

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script src="jquery.jslatex.js"></script>
<script>
$(function () {
    $(".latex").latex();
});
</script>

<div class="latex">
    \int_{0}^{\pi}\frac{x^{4}\left(1-x\right)^{4}}{1+x^{2}}dx =\frac{22}{7}-\pi
</div>


jsLaTeXの出力

Reference

Knowledge-aholic: jsLaTeX: A jQuery plugin to directly embed LaTeX into your website or blog
http://knowledge-aholic.blogspot.com/2009/12/jslatex-jquery-plugin-to-directly-embed.html

CODECOGS
http://www.codecogs.com/

via

複雑な数式を出力したい際に使えるjQueryプラグイン「jsLaTeX」:phpspot開発日誌
http://phpspot.org/blog/archives/2009/12/jqueryjslatex.html