我真的很难创建一个多线方程,它包含一个矩阵和一个排列等号的单个方程,如下所示:
到目前为止已完成以下工作:
\begin{equation*}
M = U\Sigma V^{*}
\end{equation*}
\begin{equation}
= \textbf{U}\left[ \begin{array}{cccc}
\sigma_{1} & 0 & \ldots & 0\\
0 & \sigma_{2} & \ldots & 0\\
\vdots & \vdots & \ddots & \vdots\\
0 & 0 & \ldots & \sigma_{m}\\
\end{array} \right]\textbf{V*}
\end{equation}
答案1
您可以在align
环境中使用您的代码:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
\mathbf{M} &= \mathbf{U}\Sigma \mathbf{V}^{*} \nonumber\\
&= \mathbf{U}\left[\begin{array}{cccc}
\sigma_{1} & 0 & \ldots & 0\\
0 & \sigma_{2} & \ldots & 0\\
\vdots & \vdots & \ddots & \vdots\\
0 & 0 & \ldots & \sigma_{m}\\
\end{array} \right]\textbf{V*}
\end{align}
\end{document}