v0.20.1

Installation

Install the package from NPM:

yarn add mafs # or, if using NPM npm install --save mafs

And then make sure to load the stylesheet.

@import "mafs/core.css";

Now, in your React app, you should be able to render a Mafs view.

-32--31--30--29--28--27--26--25--24--23--22--21--20--19--18--17--16--15--14--13--12--11--10--9--8--7--6--5--4--3--2--1-12345678910111213141516171819202122232425262728293031-4--3--2--1-123
import { Mafs, Coordinates } from "mafs"

function HelloFx() {
  return (
    <Mafs>
      <Coordinates.Cartesian />
    </Mafs>
  )
}

Fancy math font

The font in use on this site (Computer Modern Serif) can be used with Mafs by importing mafs/font.css. It will import the appropriate font files and set Mafs' font-family.

@import "mafs/core.css"; @import "mafs/font.css";

Computer Modern looks great, but it comes at a cost: using it will add about 220kB to your page load.