矩阵中的矩阵

矩阵中的矩阵

我想做这样的事情:在此处输入图片描述

目前我只能在一个条目上创建矩阵。该怎么做?

非常感谢!

答案1

与。{pNiceMatrix}nicematrix

\documentclass[12pt]{article}
\usepackage{nicematrix}

\begin{document}

\[\begin{pNiceMatrix}
X_{11} & X_{12} & \Cdots &  X_{1n} \\
X_{21} & \Block{3-3}<\Large>{B} \\
\Vdots \\
X_{1n} \\
\CodeAfter
  \SubMatrix[{2-2}{4-4}][xshift=-1ex,extra-height=-1ex]
\end{pNiceMatrix}\]

\end{document}

您需要多次编译(因为nicematrix在后台使用 PGF/Tikz 节点)。

上述代码的输出

答案2

仅有的amsmath

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
\begin{bmatrix}
  x_{11} & \begin{matrix} x_{12} & \dots & x_{1n} \end{matrix} \\
  \begin{matrix} x_{21} \\ \vdots \\ x_{n1} \end{matrix}  &
  \begin{bmatrix}
  \hspace*{-\arraycolsep}
  \phantom{x_{11}} & \phantom{x_{11}} & \phantom{x_{11}}
  \hspace*{-\arraycolsep}
  \\
  & \raisebox{-0.2\height}[0pt][0pt]{\LARGE$B$} & \\
  & &
  \end{bmatrix}
\end{bmatrix}
\]

\end{document}

在此处输入图片描述

相关内容