Variable: org-html-mathjax-template

org-html-mathjax-template is a customizable variable defined in ox-html.el.gz.

Value

"<script>\n  window.MathJax = {\n    tex: {\n      ams: {\n        multlineWidth: '%MULTLINEWIDTH'\n      },\n      tags: '%TAGS',\n      tagSide: '%TAGSIDE',\n      tagIndent: '%TAGINDENT'\n    },\n    chtml: {\n      scale: %SCALE,\n      displayAlign: '%ALIGN',\n      displayIndent: '%INDENT'\n    },\n    svg: {\n      scale: %SCALE,\n      displayAlign: '%ALIGN',\n      displayIndent: '%INDENT'\n    },\n    output: {\n      font: '%FONT',\n      displayOverflow: '%OVERFLOW'\n    }\n  };\n</script>\n\n<script\n  id=\"MathJax-script\"\n  async\n  src=\"%PATH\">\n</script>"

Documentation

The MathJax template. See also org-html-mathjax-options.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defcustom org-html-mathjax-template
  "<script>
  window.MathJax = {
    tex: {
      ams: {
        multlineWidth: '%MULTLINEWIDTH'
      },
      tags: '%TAGS',
      tagSide: '%TAGSIDE',
      tagIndent: '%TAGINDENT'
    },
    chtml: {
      scale: %SCALE,
      displayAlign: '%ALIGN',
      displayIndent: '%INDENT'
    },
    svg: {
      scale: %SCALE,
      displayAlign: '%ALIGN',
      displayIndent: '%INDENT'
    },
    output: {
      font: '%FONT',
      displayOverflow: '%OVERFLOW'
    }
  };
</script>

<script
  id=\"MathJax-script\"
  async
  src=\"%PATH\">
</script>"
  "The MathJax template.  See also `org-html-mathjax-options'."
  :group 'org-export-html
  :type 'string)