答案1
我建议你把一个aligned[b]
环境嵌入另一个equation
环境中,这样方程编号就会放在最底行。然后使用
\left( \begin{matrix} ... \end{matrix} \right.
在上面一行中构造一个
\right. \begin{matrix} ... \end{matrix} \left)
在下面一行构造。
\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for 'aligned' environment
\begin{document}
\begin{equation}
\begin{aligned}[b]
\mathbf{Y}_{\ell}(r)
&= \left(
\begin{matrix}
a & b & 0 \\
c & d & 0 \\
e & f & \rho_0 r^l \\
g & h & 0 \\
0 & 0 & r^l\\
i & j & k
\end{matrix}
\right. \ \cdots \\
&\qquad \cdots \ \left.
\begin{matrix}
l & m & 0 \\
n & o & 0 \\
p & q & r \\
s & t & 0 \\
0 & 0 & u \\
v & w & 0
\end{matrix}
\right)
\end{aligned}
\end{equation}
\end{document}