答案1
使用amsmath
包 (for bmatrix
):
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
L= \begin{bmatrix}
1 & 0 & 0 & \cdots & 0\\
m_{2,1} & 1 & 0 & \cdots & 0\\
m_{3,1} & m_{3,2} & 1 & \cdots & 0\\
\vdots & \vdots & \vdots & \ddots & \vdots\\
m_{n,1} & m_{n,2} & \cdots & m_{n,n-1} & 1
\end{bmatrix}
\]
\end{document}