为什么使用以下代码不能LaTeX
正确显示方程组?
\documentclass[10pt]{amsart}
\usepackage{mathtools,systeme,array}
\begin{document}
\begin{align*}
\systeme{y - k = \mathrlap{m(x - h)}, (x - h)^{2} + (y - k)^{2} = \mathrlap{r^{2}}}
\end{align*}
\end{document}
答案1
答案2
可能的解决方案?!
将变量的顺序传递给命令。但请注意,第一个方程的左侧不是右对齐的。
\begin{equation*}
\systeme[xhyk]{%
y - k = m(x - h),%
(x - h)^{2} + (y - k)^{2} = r^{2}}
\end{equation*}