如何在 Github Markdown 语法中将数学方程向左对齐?我尝试使用“对齐”不起作用。我的方程总是水平居中。
$$
\begin{align}
sin(α)={opposite \over hypotenuse}={h0 \over c}={h2 \over b}
\end{align}
$$
编辑:问题发布到 GitHub https://github.com/github/markup/issues/1570
Markdown 中的数学支持是相当新的(2022 年 5 月),块表达式语法$$
内联表达式语法。
$\sqrt{3x-1}+(1+x)^2$ <=== # two trailing whitespace
$\sqrt{3x-1}+(1+x)^2$
对于更大的尺寸,使用标题标题作为解决方法##
:
## $\sqrt{3x-1}+(1+x)^2$ <=== # two trailing whitespace
## $\sqrt{3x-1}+(1+x)^2$
$
\begin{aligned}
&sin(α) = {opposite \over hypotenuse} = {h0 \over c} = {h2 \over b} \\
&cos(α) = {adjacent \over hypotenuse} = {b \over c} = {d \over b} \\
&tan(α) = {opposite \over adjacent} = {h0 \over b} = {h2 \over d}
\end{aligned}
$
$$
\begin{align}
\mbox{Union: } & A\cup B = \{x\mid x\in A \mbox{ or } x\in B\} \\
\mbox{Concatenation: } & A\circ B = \{xy\mid x\in A \mbox{ and } y\in B\} \\
\mbox{Star: } & A^\star = \{x_1x_2\ldots x_k \mid k\geq 0 \mbox{ and each } x_i\in A\} \\
\end{align}
$$
和
$$
\begin{align*}
2x - 5y &= 8 \\
3x + 9y &= -12
\end{align*}
$$