提问于:
浏览数:
1754
## 编译环境
操作系统
* [x] Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [x] TexLive `2020`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
我用以下代码写了一个方程组,
```
\begin{equation}\label{exam:equations}
\left\{\begin{aligned}
&x_1+&x_2+&x_3=1\\
3&x_1+2&x_2-&x_3=7\\
&x_1+&&x_3=4
\end{aligned}
\right.
\end{equation}
```
可是编译出来之后第二行的2和x2之间有空格,不知道是什么原因,这个怎么解决?
![](https://wenda.latexstudio.net/data/attach/210217/YqRZbn8J.png)
1 回答
3
```tex
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\left\{\begin{alignedat}{3}
x_1&{}+{}& x_2&{}+{}&x_3&=1\\
3x_1&{}+{}&2x_2&{}-{}&x_3&=7\\
x_1&{}+{}& & &x_3&=4
\end{alignedat}
\right.
\end{equation}
\end{document}
```
![](https://wenda.latexstudio.net/data/attach/210217/gEREpBlE.png)
-
非常感谢! – 幽谷之草 2021-02-18 10:06 回复
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。