npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bespoke-math

v1.4.1

Published

Use katex to include latex formulas into your bespoke.js presentation

Downloads

13

Readme

Build Status Coverage Status Dependencies

bespoke-math

Use KaTeX to include latex formulas into your bespoke.js presentation. See our demo.

How it works

Only the HTML elements with the math class will be transformed through KaTeX (this is configurable, keep reading). For example, this markup:

<div class="math">d = \frac{a^2+b^2}{\sqrt(c)}</div>

...will render like:

Also, KaTeX will render the element either as a "full" math ("displaystyle") or as an inline math ("textstyle") (inline is a bit shortened to fit one text line) depending on the HTML element used:

<span class="math">...</span>

...renders inline (because of <span></span>) whereas a <div></div> or any other element renders a "full" formula:

<div class="math">...</div>
  • Display style (full height):
  • Text style (inline):

KaTeX

KaTeX is a much lighter alternative to MathJax that allows you to write LaTeX formulas on the web.

Refer to their documentation on what syntax is supported. The current version of KaTeX in use is 0.13.3.

Download

Download the production version or the development version, or use a package manager.

Usage

This plugin is shipped in a UMD format, meaning that it is available as a CommonJS/AMD module or browser global.

For example, when using CommonJS modules:

const bespoke = require('bespoke');
const math = require('bespoke-math');

bespoke.from('#presentation', [
  math()
]);

When using browser globals:

bespoke.from('#presentation', [
  bespoke.plugins.math()
]);

Configuring bespoke-math

The default action is to transform every HTML element that has .math (e.g., <span class="math">\vec{r} = \vec{S} + 2\vec{a}</span>). Furthermore, the formulas are considered inline if their element is a span or a full formula if the element is a div or any other HTML element.

To change that behavior, simply provide 1 or 2 arguments when instantiating the plugin:

  • 1 argument: a string with the selector for math formulas - inline vs full formulas is still decided through the use of span (for inline) and anything else for full.
    • Example:
      var bespoke = require('bespoke'),
        math = require('bespoke-math');
      
      bespoke.from('#presentation', [
        math('.formula, .math, .equation')
      ]);
      • Renders into KaTeX equations all elements with either one of the classes: formula, math and equation. A formula will be rendered inline if its element is a span, otherwise and it'll be a full formula.
  • 2 arguments: a string with the selector for inline formulas and a string for the full formula
    • Example:
      var bespoke = require('bespoke'),
        math = require('bespoke-math');
      
      bespoke.from('#presentation', [
        math('.inline-math', '.math')
      ]);
      • Renders into KaTeX equations all elements with the class inline-math as inline and all elements with the class math as full formula.

Inclusion of KaTeX's CSS/Font files

KaTeX is composed of javascript, CSS and font-face files (refer to their usage documentation).

This plugin, when a math formula is found on the bespoke deck, injects the CSS file into de document head (by using browserify-css). The font-face files, however, are loaded from a CDN (cdnjs, in case). This is not ideal as an Internet connection is required for KaTeX to work 100%.

It is possible, however, to encode the font files on the generated browserify bundle, but that makes the plugin js file much larger. If being able to use this plugin offline is necessary, you can use the files:

  • dist/bespoke-math-offline-fonts.js or
  • dist/bespoke-math-offline-fonts.min.js

Package managers

npm

$ npm install bespoke-math

Bower

$ bower install bespoke-math

Credits

This plugin was built with generator-bespokeplugin.

License

MIT License