在 Latex 中编写此矩阵

在 Latex 中编写此矩阵

我想在 Latex 中写入这个矩阵:在此处输入图片描述

我写了这段代码:

\[
\begin{bmatrix}
0 \ldots 0 & 0 \ldots 0 & d_{i,L} & * \ldots *\\
0 \ldots 0 & 0  \ldots d_{i,L-1} & * & * \ldots *\\
\vdots & \vdots & \vdots & \vdots\\
0 \ldots d_{i,1} & * \ldots * & *  & * \ldots *\\ 
\end{bmatrix}
\]

我该如何改进它?/

谢谢您的帮助!!

答案1

您可以添加更多对齐:

在此处输入图片描述

\documentclass[preview]{standalone}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathdots}

\begin{document}
$$\Delta(\left|v_{i}\right>)=
\begin{bmatrix}
0 & \ldots & 0 & 0 & \ldots & 0 & d_{i,L} & * & \ldots & *\\
0 & \ldots & 0 & 0 & \ldots & d_{i,L-1} & * & * & \ldots & *\\
\vdots & \iddots & \vdots & \vdots & \iddots & \vdots & \vdots & \vdots & \iddots & \vdots\\
0 & \ldots & 0 & d_{i,2} & \ldots & * & * & * & \ldots & *\\
0 & \ldots & d_{i,1} & * & \ldots & * & * & * & \ldots & *\\ 
\end{bmatrix}
$$
\end{document}

相关内容