问题描述
我想将给定的方程组对齐在等号处,如果可能的话,也对齐在变量的符号处。我还尝试使用systeme
但没有成功。
任何帮助完成此事的帮助都将非常感激。
梅威瑟:
$$
\begin{matrix}
x + 2y - z &= 1\\
2x + 3y + z &= 1 \\
- 4x -5 y + (h^2-9)z &= h + 1
\end{matrix}
$$
答案1
答案2
答案3
答案4
就术语的精确对齐而言,我不太确定你想要什么。尽管如此,我认为最近autoaligne
可以使用包来实现这一点。
举例来说,您可以尝试修改以下代码:
\documentclass{article}
\usepackage{amsmath}
\usepackage{autoaligne}
\begin{document}
\[
\autoaligne{%
+x + 2y +\-z =+ 1\\
+2x + 3y + z =+ 1 \\
+\-4x + \-5y + (h^2-9)z = h + 1
}%
\]
\end{document}
输出结果如下: