Latex_test
作為測試HEXO MathJax的第一篇
做為測試紀錄
表格
1 | $$ |
顯示
$$
\begin{array}
\hline
& \color{red}A & B & C \\
\hline
June\ & 10 & 3 & 1 \\
July\ & 6 & 15 & 2 \\
Aug \ & 8 & 7 & 5
\end{array}
$$
highlight
1 | $$ |
顯示
$$
\bbox[border:2px solid red]
{e^x=\lim_{n\to\infty} \left(1+\frac{x}{n} \right)^n
\qquad (1)
}
$$
MATH
1 | \begin{equation} |
顯示
發現:
1 | 當使用\begin{equation}\end{equation},可以不用使用 $$'content'$$這樣的格式 |
\begin{equation} \begin{aligned}
\beta(p,q) &= \frac{\Gamma(p)\Gamma(q)}{\Gamma(p+q)} \\
&= \frac{(p-1)!(q-1)}{(p+q-1)!}
\end{aligned}
\end{equation}
\begin{equation} \begin{aligned} \ddot{\underline{r}} &= \frac{d^{2}\underline{r}}{dt^{2}} \\ &= 0
\end{aligned} \end{equation}
矩陣
$$ A_1 =
\begin{pmatrix}
1&0&0 \\
0&1&0 \\
0&0&1
\end{pmatrix}
$$
$$ A_2 =
\begin{bmatrix}
0&0&1 \\
0&1&0 \\
1&0&0
\end{bmatrix}
$$
$$ A_3 =
\begin{matrix}
1&1&1 \\
1&1&1 \\
1&1&1
\end{matrix}
$$
圖片(failed)
$$
\usepackage{epic}
\begin{picture}
\unitlength=1mm
\put(0,0){\vector(0,1){60}}
\put(0,0){\vector(1,0){80}}
\put(0,0){\circle*{1}}
\put(-5,60){$$y$$}
\put(80,-5){$$x$$}
\end{picture}
$$