とらりもんHOME  Index  Search  Changes  Login

とらりもん - Mathjax Diff

  • Added parts are displayed like this.
  • Deleted parts are displayed like this.

TeXの数式をHTMLに埋め込む。

* htmlファイルのヘッダーに, Mathjaxのおまじないを埋め込むだけ。
* たとえばこんなのをtest.htmlとして保存し, ブラウザで開いてみよう!
<html>
<header>
<script type="text/x-mathjax-config">
  MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
</header>

\[ \int_{a}^{b} f(x) dx \]
\( \int_{a}^{b} f(x) dx \)
</html>

* 参考: [[http://kurumatorajirou.blogspot.com/2013/01/ubuntumathjax.html]]