るいログ

【WP-MathJax】数式を左寄せにする方法

やりたいこと

作ったショートコード

functions.php

function mathjaxLeftFunc() {
  $code = '
  <script type="text/x-mathjax-config">
  MathJax.Hub.Config({
    displayAlign: "left",
    displayIndent: "2em"
  });
  </script>
  '; return $code;
} add_shortcode('mathjaxLeft', 'mathjaxLeftFunc');

使い方

[mathjax][mathjaxLeft]

基本的にMathJaxのプラグインと同じく、記事の最初に一緒に書いておけばOK。

参考:MathJax - 数式を左寄せにする方法