答案1
您可以使用nicematrix
包来执行此操作。请注意你必须编译两次得到结果。
还要注意,这\OverBrace
是一个相对较新的功能nicematrix
,因此如果您使用旧安装,则必须进行更新。
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
\[
m\begin{BNiceArray}{cccc|cc}[right-margin=.4em]
1 & 2 & 3 & 4 & 5 & 6 \\
11 & 12 & 13 & 14 & 15 & 16 \\
\CodeAfter
\SubMatrix[{1-3}{2-6}]
\OverBrace[shorten,yshift=3pt]{1-1}{2-2}{n}
\OverBrace[shorten,yshift=3pt]{1-3}{2-4}{r}
\OverBrace[shorten,yshift=3pt]{1-5}{2-6}{s}
\end{BNiceArray}n
\]
\end{document}