块保留为单位矩阵的矩阵

块保留为单位矩阵的矩阵

我想重现以下矩阵:

在此处输入图片描述

然而,我能创造的最好的是:

\begin{equation}
\begin{pmatrix} 
\begin{matrix} 1 & 1 & 0 & ... & 0 \end{matrix} \\
\begin{matrix}
    0 & 0 \\
    \vdots & \vdots & I_{n-2}  \\
    0 & 0 
\end{matrix} 
\end{pmatrix}
\end{equation}

这使:

在此处输入图片描述

任何帮助是极大的赞赏。

答案1

我建议您将第 1 行替换0 & ... & 00\dots0

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\usepackage{newtxtext,newtxmath} % optional

\begin{document}
\begin{equation}
\begin{pmatrix} 
1      & 1      & 0\dots0 \\
0      & 0      &         \\
\vdots & \vdots & I_{N-2} \\
0      & 0      & 
\end{pmatrix}
\end{equation}
\end{document}

答案2

与。{pNiceMatrix}nicematrix

\documentclass{article}
\usepackage{nicematrix}

\begin{document}
\begin{equation}
\begin{pNiceMatrix} 
1      & 1      & 0 & \cdots & 0 \\
0      & 0      &         \\
\vdots & \vdots & \Block{2-3}{I_{N-2}} \\
0      & 0      
\end{pNiceMatrix}
\end{equation}
\end{document}

上述代码的输出

相关内容