mathjax-img
TypeScript icon, indicating that this package has built-in type declarations

4.0.1 • Public • Published

mathjax-img

MathJax TeX extension to embed images.

MathJax Extension: img.js, leveraging mglyph in TeX input

This extension implements a TeX macro \img for embedding images in mathematical formula.

Usage:

\img[valign=<vertical alignment>,width=<width>,height=<height>][<alttext>]{URL}

or

\img[<vertical alignment>][<width>][<height>][<alttext>]{URL}

This adds an \img macro for inserting images into a MathJax expression. It takes 5 arguments: the URL for the image and, optionally, the vertical alignment value, the width, the height, and the alttext. Any of the final four can be blank in order to use the default.

With no vertical-align value, the image will sit on the baseline. With no width or height, the image will be its natural size. With one of the width or height specified, the image will be scaled to match that dimension while keeping the aspect ratio the same. If both are given, then image will be scaled to match both dimensions, without regard to the original aspect ratio. The alttext will be used to provide a textual alternative in the rendering.

Using NodeJS

Install mathjax-full and mathjax-img and follow the instructions for NodeJS, e.g.,

import { TeX } from 'mathjax/js/input/tex.js';
import { configuration as img } from 'mathjax-img';
const tex = new TeX({
    packages: [img.name]
});

Using a browser

For client-side use, you need load img.min.js.

Follow the instructions from the MathJax documentation on loading a third-party extensions, e.g.,

MathJax = {
    loader: {
        load: ['[img]/img.min.js'],
        paths: {img: 'https://cdn.jsdelivr.net/npm/mathjax-img@4'}
    },
    tex: {
        packages: {'[+]': ['img']}
    }
};

References

Readme

Keywords

Package Sidebar

Install

npm i mathjax-img

Weekly Downloads

26

Version

4.0.1

License

Apache-2.0

Unpacked Size

37.8 kB

Total Files

19

Last publish

Collaborators

  • pkra