Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 922 Bytes

equation-numbers.html.md

File metadata and controls

20 lines (15 loc) · 922 Bytes

This example shows how to use the tex-chtml component to process a complete HTML page containing TeX notation with automatic equation numbers.

The key lines are

  <script>
  MathJax = {
    tex: {
      tags: 'ams'  // should be 'ams', 'none', or 'all'
    }
  };
  </script>
  <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script>

which configures the TeX input jax to include automatic tags for equations in AMS environments that call for them. The math on the page includes examples of starred environments (that tells MathJax not to number those equations), and of the use of \notag to prevent a tag on an equation, and \tag{} to override the default tag number.

Run the example