答案1
答案2
像这样?
使用该nicematrix
包:
\documentclass[margin=3mm]{standalone}
\usepackage{bm}
\usepackage[table]{xcolor}
\usepackage{nicematrix}
\begin{document}
$
\begin{pNiceArray}{CCCC}
\alpha_{11} & * & \dots & * \\
0 & \Block{3-3}<\huge\bm>{A_1}
& & \\
\vdots & & & \\
0 & & &
\end{pNiceArray}
$
\end{document}
或者
\documentclass[margin=3mm]{standalone}
\usepackage{bm}
\usepackage{nicematrix}
\begin{document}
$
\begin{pNiceArray}{CCCC}
\alpha_{11} & * & \Cdots & * \\
0 & \Block{3-3}<\huge\bm>{A_1}
& & \\
\Vdots & & & \\
0 & & &
\end{pNiceArray}
$
\end{document}
对上述 MWE 进行两次编译后,你将获得如下结果。