关于矩阵的疑问

关于矩阵的疑问

我想创建一个简单的矩阵,代码如下所示,但是我在编译时出现错误。有人能帮忙吗?

$$e^{-{\cal L}=
\left[ 
\begin{array}{cccccc}
1 & 0 & . & . & . & 0 \\
0 & 0 & . & . & . & 0 \\
0 & 0 & . & . & . & 0 \\
0 & 0 & . & . & . & 0 \\
0 & 0 & . & . & . & 0 \\
0 & 0 & . & . & . & 0 \\    
\end{array}  
\right]$$

答案1

或者你可能需要下面这样的内容。

\documentclass[preview,border=12pt,varwidth]{standalone}% change it back to your own document class
\usepackage{amsmath}

\begin{document}
\abovedisplayskip=0pt\relax% don't use this line in  your production
\[
e^{-\mathcal{L} }
=
\begin{bmatrix}
1 & 0 & \cdots & 0 \\
0 & 0 & \cdots & 0 \\[-1ex]
\vdots & \vdots & \ddots & \vdots \\
0 & 0 & \cdots & 0
\end{bmatrix}
\]
\end{document}

在此处输入图片描述

相关内容