
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
mathjax-img
Advanced tools
MathJax TeX extension to embed images.
img.js
, leveraging mglyph in TeX inputThis extension implements a TeX macro \img
for embedding images in mathematical formula.
\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.
Install mathjax-full
and mathjax-img
and follow the instructions for NodeJS, e.g.,
const { TeX } = require('mathjax/js/input/tex.js');
const img = require('mathjax-img').configuration; // OR import { configuration as img } from 'mathjax-img';
const tex = new TeX({
packages: [img.name]
});
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@3'}
},
tex: {
packages: {'[+]': ['img']}
}
};
FAQs
img extension for MathJax's TeX input
The npm package mathjax-img receives a total of 0 weekly downloads. As such, mathjax-img popularity was classified as not popular.
We found that mathjax-img demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.