答案1
使用\smash
隐藏部件的高度\underbrace
。您还可以删除括号、\left[
和\right]
,并使用bmatrix
或仅[ .. ]
在 周围使用matrix
。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
A = \begin{bmatrix}
1&\smash{\underbrace{\begin{matrix}
1&\dotsb&1
\end{matrix}}_N}
\end{bmatrix}
\]
\end{document}
PS:想法和@StevenB.Segletes 提供的链接一样,我在搜索之前就写了答案..