Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
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.,
import { TeX } from 'mathjax/js/input/tex.js';
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@4'}
},
tex: {
packages: {'[+]': ['img']}
}
};
FAQs
img extension for MathJax's TeX input
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.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.