答案1
以下解决方案采用埃菲克包及其同名环境。
{alignat}{3}
请注意,对于手头的方程式来说,没有必要采用——align
这样就足够了。
\documentclass[12pt,a4paper]{article}
\usepackage{empheq} % 'empheq' loads 'amsmath' automatically
\begin{document}
\begin{empheq}[left=\empheqlbrace]{align}
a_1x + b_1y + c_1z &= d_1 \label{eq1} \\
a_2x + b_2y + c_2z &= d_2 \label{eq2} \\
a_3x + b_3y + c_3z &= d_3 \label{eq3}
\end{empheq}
From equation \eqref{eq1} we have \dots
\end{document}
答案2
与。{DispWithArrows}
witharrows
\documentclass[12pt,a4paper]{article}
\usepackage{witharrows}
\usepackage{amsmath}
\begin{document}
\begin{DispWithArrows}<>
a_1x + b_1y + c_1z &= d_1 \label{eq1} \\
a_2x + b_2y + c_2z &= d_2 \label{eq2} \\
a_3x + b_3y + c_3z &= d_3 \label{eq3}
\end{DispWithArrows}
From equation \eqref{eq1} we have \dots
\end{document}