数値シュミレーションという授業で波動関数をシュミレーションする課題がありました。
面白かったので忘れないように、MathJax.rbというプラグインのテストを兼ねてメモすることにしました。
MathJax.rbの導入 MathJax.rbの導入には、30分のチュートリアルでJekyllを理解するが非常に参考になりました。
MathJax.rbをダウンロードして、/plugins/にコピーする。 octopressの場合、_layouts/layout.htmlではなくて、source/_includes/custom/head.htmlに次の行を追加する。 # source/_includes/custom/head.html <script type="text/javascript" src="
http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> MathJax.rbの使い方 ブロックの場合、mathとendmathタグで囲む
{% math %} Simple\ FDTD\ Algorithm\ and\ Devils\ in\ the\ Details \ \begin{eqnarray} \psi(x,t + \Delta t) &=& -\psi(x, t - \Delta t) + [2 + \frac{v^2\Delta t^2}{\Delta x ^2} d_x^2] \psi(x,t) \ $$ -\psi(x, t - \Delta t) + 2\psi(x,t) + \frac{v^2\Delta t^2}{\Delta x ^2} d_x^2 \psi(x,t) \ $$ -\psi(x, t - \Delta t) + 2\psi(x,t) + \frac{v^2\Delta t^2}{\Delta x ^2} [ \psi(x - \Delta x, t) + \psi(x + \Delta x, t) - 2 \psi(x, t) ] \ \end{eqnarray} {% endmath %} インラインの場合、m とemタグで囲む(下のコードだと、emの部分が消えていますが囲んでください)