如何在支援 MathJax 的編輯器中使用 LaTeX 編輯數學公式
MathJax是什麼?
MathJax是一個開源JavaScript庫。它支援LaTeX、MathML、AsciiMath符號,可以運行於所有流行瀏覽器上。
LaTeX是什麼?
LaTeX(LATEX,音譯“拉泰赫”)是一種基於ΤΕΧ的排版系統。
如何使用LaTeX公式?(這裡列出的是本人常用的,更多可以檢視最後的“參考連結”)
To see how any formula was written, right-click on the expression it and choose "Show Math As > TeX Commands"(When you do this, the '$' will not display.)
For inline formulas, enclose the formula in
$...$
. For displayed formulas, use$$...$$
.For superscripts and subscripts, use
^
and_
. Don't forget{…}
if the superscripts or subscripts are more than a single symbol。Sums and integrals
\sum
and\int
; the subscript is the lower limit and the superscript is the upper limit, so for example\sum_1^n
Matrices
矩陣語法:\begin{matrix}…\end{matrix}
同一行的元素之間使用 &
分割,每行以 \\
結尾。如:
$$
\begin{matrix}
1 & x & x^2 \\
1 & y & y^2 \\
1 & z & z^2 \\
\end{matrix}
$$
EX01. matrix
關鍵字可以替換成一下其他關鍵字。
關鍵字 | 顯示 |
---|---|
matrix | \(\begin{matrix}1&2\\3&4\end{matrix}\) |
pmatrix | \(\begin{pmatrix}1&2\\3&4\end{pmatrix}\) |
bmatrix | \(\begin{bmatrix}1&2\\3&4\end{bmatrix}\) |
Bmatrix | \(\begin{Bmatrix}1&2\\3&4\end{Bmatrix}\) |
vmatrix | \(\begin{vmatrix}1&2\\3&4\end{vmatrix}\) |
Vmatrix | \(\begin{Vmatrix}1&2\\3&4\end{Vmatrix}\) |
EX02. 不同方向的省略號。 \cdots
-> \(\cdots\) \ddots
-> \(\ddots\) \vdots
-> \(\vdots\)
\[ \begin{pmatrix} 1 & a_1 & a_1^2 & \cdots & a_1^n \\ 1 & a_2 & a_2^2 & \cdots & a_2^n \\ \vdots & \vdots& \vdots & \ddots & \vdots \\ 1 & a_m & a_m^2 & \cdots & a_m^n \end{pmatrix} \]
EX03. 行中的小矩陣。 \bigl( \begin{smallmatrix} a & b \\ c & d \end{smallmatrix} \bigr)
-> \(\bigl( \begin{smallmatrix} a & b \\ c & d \end{smallmatrix} \bigr)\)