答案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}