Skip to content
This repository has been archived by the owner on Oct 5, 2018. It is now read-only.

Latest commit

 

History

History
 
 

longdiv

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

mathjax-extension-longdiv

MathJax TeX extension for long division notation.

Extension: longdiv for the MathJax third party repository

A version of longdiv.js for the MathJax third party extension repository, including a compressed version (see MathJax-dev tools).

About longdiv

Provides \longdiv macro to render long-division notation.

Usage:

\longdiv{dividend}{divisor}

References:

Using the MathJax CDN {#CDN}

The MathJax CDN hosts a copy of this extension via the MathJax third party extension repository. To use the CDN copy, you need MathJax v2.4 (or higher) and configure the third party extension repository as described in the MathJax documentation.

Then add the extension to your configuration like any other third party extension from the MathJax CDN. For example, your inline configuration might be

 <script type="text/x-mathjax-config>
 MathJax.Hub.Config({
   extensions: ["tex2jax.js","[Contrib]/longdiv.js"],
   jax: ["input/TeX","output/HTML-CSS"],
   tex2jax: {inlineMath: [["$","$"],["\\(","\\)"]]},
   TeX: {extensions: ["AMSmath.js","AMSsymbols.js"]}
 });
 </script>