带对角矩阵

带对角矩阵

我怎样在乳胶中表示这个矩阵? 在此处输入图片描述

答案1

你可能会发现这很有用。至于添加一个大 0,你可以用 \smash 和 \rlap 覆盖(或使用 tikzpicture)。

\documentclass{article}
\usepackage{mathtools}

%from page 117 of symbols.pdf
\makeatletter
\def\revddots{\mathinner{\mkern1mu\raise\p@
\vbox{\kern7\p@\hbox{.}}\mkern2mu
\raise4\p@\hbox{.}\mkern2mu\raise7\p@\hbox{.}\mkern1mu}}
\makeatother

\begin{document}
\begin{equation}
\begin{bmatrix}
0 & \cdots & 1\\
\vdots & \revddots & \vdots\\
1 & \cdots & 0
\end{bmatrix}
\end{equation}
\end{document}

演示

相关内容