答案1
正如@JohnKormylo 在评论中指出的那样,您可以通过采用array
环境来实现格式化目标。
\documentclass{article}
\usepackage{array} % for '\newcolumntype' macro
\newcolumntype{C}{>{{}}c<{{}}}
\begin{document}
\begingroup % localize scope of next instruction
\setlength\arraycolsep{0pt} % default: 5py
a) $\left\{ \
\begin{array}{ rCrCr @{{}={}} r}
x_1 & + & 2x_2 & - & x_3 & -1 \\
2x_1 & + & 2x_2 & + & x_3 & 1 \\
3x_1 & + & 5x_2 & - & 2x_3 & -1
\end{array}
\right.$
\endgroup
\end{document}