如何在乳胶中表示以下边界矩阵?

如何在乳胶中表示以下边界矩阵?

在此处输入图片描述

我尝试过,但最终还是失败了。我的主要疑问是如何放置花括号,以便它覆盖整个 T11 到 T1p1,如附图所示。是否存在类似于的语法,\Biggl覆盖范围更广。MWE 如下。任何帮助都值得赞赏。

\documentclass{article}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{blkarray}
\usepackage{mathtools}
\usepackage{easybmat}
\usepackage{multirow,bigdelim}
\usepackage{blkarray}
\begin{document}

\[
\renewcommand\arraystretch{1.5}
ETC_{ij}= 
\begin{blockarray}{c@{\,}ccccc}
\vspace{0.2cm}
&& C_{1} & C_{2} & \cdots & C_{m} \\
\begin{block}{c@{\,}c[cccc]}
&T_{11} & ETC_{11,1} & ETC_{11,2} & \cdots & ETC_{11,m} \\
&T_{12} & ETC_{12,1} & ETC_{12,2} & \cdots & ETC_{12,m} \\
\smash{\raisebox{5pt}{$\Biggl\{$}}&
\vdots & \vdots & \vdots & \vdots & \vdots \\
&T_{1p1} & ETC_{1p1,1} & ETC_{1p1,2} & \cdots & ETC_{1p1,m} \\
&\vdots & \vdots & \vdots & \vdots & \vdots \\
&T_{n1} & ETC_{n1,1} & ETC_{n1,2} & \cdots & ETC_{n1,m} \\
&T_{n2} & ETC_{n2,1} & ETC_{n2,2} & \cdots & ETC_{n2,m} \\
\smash{\raisebox{2pt}{$\Biggl\{$}}&
\vdots & \vdots & \vdots & \vdots & \vdots \\
&T_{npn} & ETC_{npn,1} & ETC_{npn,2} & \cdots & ETC_{npn,m} \\  \\
\end{block}
\end{blockarray}
\]
\end{document}

答案1

我希望你的文档中没有太多这样的内容!;-)

这个想法很好,你只需要使用可扩展的分隔符。我还添加了一些技巧,以诱导blkarray使用比通常略大的围栏,而不是空行或显式空格。

\documentclass{article}
\usepackage{amsmath}
\usepackage{blkarray}
\begin{document}

\[
\renewcommand\arraystretch{1.5}
ETC_{ij}= 
\begin{blockarray}{c@{\,}ccccc}
&& C_{1} & C_{2} & \cdots & C_{m} \\
\begin{block}{c@{\,}c[cccc]}
&T_{11} & ETC_{11,1} & ETC_{11,2} & \cdots & ETC_{11,m}\smash[b]{\vphantom{\bigg|}} \\
&T_{12} & ETC_{12,1} & ETC_{12,2} & \cdots & ETC_{12,m} \\
\smash{%
  \raisebox{.8\normalbaselineskip}{%
    $A_1\left\{
    \vphantom{\begin{array}{c} \\ \\ \\ \\ \end{array}}
    \right.\kern-\nulldelimiterspace$%
  }%
}
&\vdots & \vdots & \vdots & \vdots & \vdots \\
&T_{1p1} & ETC_{1p1,1} & ETC_{1p1,2} & \cdots & ETC_{1p1,m} \\
&\vdots & \vdots & \vdots & \vdots & \vdots \\
&T_{n1} & ETC_{n1,1} & ETC_{n1,2} & \cdots & ETC_{n1,m} \\
&T_{n2} & ETC_{n2,1} & ETC_{n2,2} & \cdots & ETC_{n2,m} \\
\smash{%
  \raisebox{.8\normalbaselineskip}{%
    $A_n\left\{
    \vphantom{\begin{array}{c} \\ \\ \\ \\ \end{array}}
    \right.\kern-\nulldelimiterspace$%
  }%
}
&\vdots & \vdots & \vdots & \vdots & \vdots \\
&T_{npn} & ETC_{npn,1} & ETC_{npn,2} & \cdots & ETC_{npn,m}\smash[t]{\vphantom{\bigg|}} \\
\end{block}
\end{blockarray}
\]
\end{document}

在此处输入图片描述

答案2

使用。您需要{NiceMatrix}进行nicematrix多次编译。

\documentclass{article}
\usepackage{nicematrix}

\begin{document}

\[
\renewcommand\arraystretch{1.5}
ETC_{ij}= 
\begin{NiceMatrix}
    && C_{1} & C_{2} & \cdots & C_{m} \\
    \Block{4-1}{A_1}
    &T_{11} & ETC_{11,1} & ETC_{11,2} & \cdots & ETC_{11,m} \\
    &T_{12} & ETC_{12,1} & ETC_{12,2} & \cdots & ETC_{12,m} \\
    &\vdots & \vdots & \vdots & \vdots & \vdots \\
    &T_{1p1} & ETC_{1p1,1} & ETC_{1p1,2} & \cdots & ETC_{1p1,m} \\
    &\vdots & \vdots & \vdots & \vdots & \vdots \\
    \Block{4-1}{A_1}
    &T_{n1} & ETC_{n1,1} & ETC_{n1,2} & \cdots & ETC_{n1,m} \\
    &T_{n2} & ETC_{n2,1} & ETC_{n2,2} & \cdots & ETC_{n2,m} \\
    &\vdots & \vdots & \vdots & \vdots & \vdots \\
    &T_{npn} & ETC_{npn,1} & ETC_{npn,2} & \cdots & ETC_{npn,m} \\
\CodeAfter
  \SubMatrix[{2-3}{10-6}]
  \SubMatrix{\{}{2-2}{5-2}{.}
  \SubMatrix{\{}{7-2}{10-2}{.}
\end{NiceMatrix}
\]

\end{document}

上述代码的输出

相关内容