答案1
您可以使用包bmatrix
中的环境amsmath
,它支持下标
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{bmatrix}
1 & 0 & 0 & 0\\
0 & 2 & 0 & 0\\
0 & 0 & \ddots & 0\\
0 & 0 & 0 & n
\end{bmatrix}_{n\times n}
\]
\end{document}
这使:
我认为最好扩展省略号,以给出所有列的复制感:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{bmatrix}
1 & 0 & 0 & 0\\
0 & 2 & 0 & 0\\
\vdots & \vdots & \ddots & \vdots\\
0 & 0 & 0 & n
\end{bmatrix}_{n\times n}
\]
\end{document}
答案2
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{bmatrix}
1 & 0 & 0 & 0 \\
0 & 2 & 0 & 0 \\
0 & 0 & \ddots & 0 \\
0 & 0 & 0 & n \\
\end{bmatrix}_{n\times n}
\end{equation}
\end{document}