鉴于
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
&x_4 &= 102/-24 = -51/12 \\
&x_3 &= -48x_3 -24x_4 = -42 \\
& &= -48x_3 -24\left(\frac{-51}{12}\right) = -42 \implies x_3 = 3\\
&x_2 &= 36x_2 - 36x_3 + 36x_4 = -90
\end{align*}
\end{document}
制作
我正在尝试找到一种方法,让方程式像在现实生活中一样向左对齐。我不明白为什么分隔符会这样拉长。
我尝试过的事情
- 对齐
- 对齐{2}
- 在网上搜索,但没有成功
答案1
目前尚不清楚您期望什么输出,并且水平对齐仅与&
对齐标记的位置有关,并且分数周围的分隔符在这里没有实际效果。
我会将 = 用于alignat
这样的显示。
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{alignat*}{2}
x_4 &= 102/-24 &&= -51/12 \\
x_3 &= -48x_3 -24x_4 &&= -42 \\
&= -48x_3 -24\left(\frac{-51}{12}\right)&& = -42 \implies x_3 = 3\\
x_2 &= 36x_2 - 36x_3 + 36x_4 &&= -90
\end{alignat*}
\end{document}