Skip to content
Alick Zhao edited this page Sep 11, 2019 · 5 revisions

MathJax

Introduction

An open source JavaScript engine to produce beautiful math on Web browsers.

Features:

  • Support TeX/LaTeX math notation
  • No installation needed
  • Modern Web tech (Web fonts, HTML+CSS)
  • Browser compatibility

Check its hompage for more info.

Demo

This section is broken since github.com wiki doesn't enable mathjax support. See upstream demo instead.

Quadratic equation

There are two solutions to (ax^2 + bx + c = 0) and they are

[ x = {-b \pm \sqrt{b^2-4ac} \over 2a}. ]

Euler's formula

[ \mathrm{e}^{\mathrm{j} \omega t} = \cos(\omega t) + \mathrm{j} \sin(\omega t) . ]

Fourier transform

[ F(\omega) = \int_{-\infty}^{\infty} f(t) \mathrm{e}^{-\mathrm{j}\omega t} \mathrm{d}t . ]

[ \mathcal{F}(\delta(\omega)) = 1 . ]

Notes

This document is written with github's markdown format. To get the html version by pandoc, use the following command:

$ github2pandoc -i mathjax.md | pandoc -f markdown -o mathjax.html --mathjax -s
Clone this wiki locally