KaTeX Versions Save

Fast math typesetting for the web.

v0.16.0

1 year ago

0.16.0 (2022-06-06)

Bug Fixes

  • copy-tex: Use JS (instead of CSS) to select full equation, solving display glitches (#3586) (8c2d852)

BREAKING CHANGES

  • copy-tex: copy-tex extension no longer has (or requires) a CSS file.

v0.15.6

1 year ago

0.15.6 (2022-05-20)

Features

v0.15.5

1 year ago

0.15.5 (2022-05-20)

Bug Fixes

v0.15.4

1 year ago

0.15.4 (2022-05-20)

Features

  • Support Unicode (sub|super)script characters (#3633) (d8fc35e)

v0.15.3

2 years ago

0.15.3 (2022-03-13)

Bug Fixes

  • Apply operator spacing to Unicode ∙ ∘ ∖ (#3584) (b362fc0)

v0.15.2

2 years ago

0.15.2 (2022-01-12)

Bug Fixes

v0.15.1

2 years ago

0.15.1 (2021-10-31)

Features

v0.15.0

2 years ago

0.15.0 (2021-10-31)

Features

BREAKING CHANGES

  • \relax is now implemented as a function. It'll stop expansions and parsing, so the behavior around \relax may change. For example, \kern2\relax em will no longer work.

v0.14.1

2 years ago

0.14.1 (2021-10-30)

Bug Fixes

v0.14.0

2 years ago

0.14.0 (2021-10-30)

Features

BREAKING CHANGES

  • With module loaders that support conditional exports and ECMAScript modules, import katex from 'katex'; will import the ECMAScript module.

You can now use:

Before After
require('katex/dist/contrib/[name].js') require('katex/contrib/[name]')
import katex from 'katex/dist/katex.mjs' import katex from 'katex'
import 'katex/dist/contrib/[name].mjs' import 'katex/contrib/[name]'