如何排版以下嵌套矩阵?

如何排版以下嵌套矩阵?

Sketch

请注意,它必须是方括号。大 A 可以是正常大小(如果需要),只要它仍然位于左侧中心即可。我也可以接受它位于外部矩阵下方,用花括号注释左侧。

答案1

像这样吗?

\documentclass{article}
\usepackage{amsmath,graphicx,arydshln}

\begin{document}

\begin{equation*}
\left[
\begin{array}{ @{} c c : c c @{} }
\hphantom{\ddots}
&
  \left[
  \begin{array}{ @{} ccc @{}}
  \phantom{1} \\ & \phantom{1} \\ && \phantom{1}
  \end{array}
  \right.
&
  \left.
  \begin{array}{ @{} ccc @{}}
  1 \\ & 1 \\ && 1
  \end{array}
  \right]
\\
\multicolumn{2}{c:}{\makebox[0pt]{\smash{\scalebox{5}{A}}}} && \ddots
\end{array}
\right]
\end{equation*}

\end{document}

enter image description here

替换\multicolumn{2}{c:}{...}

\multicolumn{2}{c:}{\makebox[0pt]{\raisebox{.2\height}[0pt][0pt]{\scalebox{5}{A}}}}

输出将是

enter image description here

融资金额已经猜出来了。可能进行计算,但我不认为您多次需要这样的对象。

相关内容