KaTeX

Fast math typesetting for the web.

MIT License

Downloads
5.1M
Stars
17.7K
Committers
167

Bot releases are visible (Hide)

KaTeX - v0.16.10 Latest Release

Published by KaTeX-bot 7 months ago

0.16.10 (2024-03-24)

Bug Fixes

KaTeX - v0.16.9

Published by KaTeX-bot about 1 year ago

0.16.9 (2023-10-02)

Features

KaTeX - v0.16.8

Published by KaTeX-bot over 1 year ago

0.16.8 (2023-06-24)

Features

  • expose error length and raw error message on ParseError (#3820) (710774a)
KaTeX - v0.16.7

Published by KaTeX-bot over 1 year ago

0.16.7 (2023-04-28)

Bug Fixes

  • docs/support_table.md: delete redundant "varPsi" (#3814) (33a1b98)
KaTeX - v0.16.6

Published by KaTeX-bot over 1 year ago

0.16.6 (2023-04-17)

Bug Fixes

KaTeX - v0.16.5

Published by KaTeX-bot over 1 year ago

0.16.5 (2023-04-17)

Features

  • __defineFunction API exposing internal defineFunction (#3805) (c7b1f84), closes #3756
KaTeX - v0.16.4

Published by KaTeX-bot almost 2 years ago

0.16.4 (2022-12-07)

Bug Fixes

KaTeX - v0.16.3

Published by KaTeX-bot almost 2 years ago

0.16.3 (2022-10-22)

Bug Fixes

KaTeX - v0.16.2

Published by KaTeX-bot about 2 years ago

0.16.2 (2022-08-29)

Bug Fixes

  • auto-render: concatenate content of successive text nodes (#3422) (4d3fdd8)
  • Implement \pmb via CSS text-shadow (#3505) (176552a)
KaTeX - v0.16.1

Published by KaTeX-bot about 2 years ago

0.16.1 (2022-08-28)

Bug Fixes

KaTeX - v0.16.0

Published by KaTeX-bot over 2 years 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.
KaTeX - v0.15.6

Published by KaTeX-bot over 2 years ago

0.15.6 (2022-05-20)

Features

KaTeX - v0.15.5

Published by KaTeX-bot over 2 years ago

0.15.5 (2022-05-20)

Bug Fixes

KaTeX - v0.15.4

Published by KaTeX-bot over 2 years ago

0.15.4 (2022-05-20)

Features

  • Support Unicode (sub|super)script characters (#3633) (d8fc35e)
KaTeX - v0.15.3

Published by KaTeX-bot over 2 years ago

0.15.3 (2022-03-13)

Bug Fixes

  • Apply operator spacing to Unicode ∙ ∘ ∖ (#3584) (b362fc0)
KaTeX - v0.15.2

Published by KaTeX-bot almost 3 years ago

0.15.2 (2022-01-12)

Bug Fixes

KaTeX - v0.15.1

Published by KaTeX-bot almost 3 years ago

0.15.1 (2021-10-31)

Features

KaTeX - v0.15.0

Published by KaTeX-bot almost 3 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.
KaTeX - v0.14.1

Published by KaTeX-bot almost 3 years ago

0.14.1 (2021-10-30)

Bug Fixes

KaTeX - v0.14.0

Published by KaTeX-bot almost 3 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]'