bmatrix 中用于行向量的括号太大

bmatrix 中用于行向量的括号太大

我无法让行向量括号达到合适的长度。目前它们看起来像

我当前渲染的 bmatrix 行向量的图像

当我写作时\mathbf{A} &= \begin{bmatrix} \mathbf{v}_1 & \mathbf{v}_2 \end{bmatrix},当它应该看起来像

$$ \mathbf{A} = \begin{bmatrix} \mathbf{v}_1 & \mathbf{v}_2 \end{bmatrix} $$

在此处输入图片描述

我是新手,不知道为什么上面这一行没有渲染,所以我使用了用 mathjax 渲染的那行图片。

以下是我在论文类文档中使用的序言:

\documentclass[11pt, oneside,]{report}
\usepackage[left=2cm,top=2cm,right=2cm,bottom=3cm]{geometry}
\usepackage[parfill]{parskip}
\usepackage{graphicx}   
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{enumerate}
\usepackage{mathtools}
\usepackage{tikz}
\usepackage{hyperref}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[singlespacing]{setspace}
\usepackage{indentfirst}
\usepackage{enumitem}
\usepackage{siunitx}
\usepackage{textcomp, gensymb}
\usepackage{empheq}
\usepackage[most]{tcolorbox}
\usepackage{titlesec}
\usepackage{fancyhdr}
\usepackage{etoolbox}
\usepackage{lipsum}
\usepackage{titling}
\usepackage[square,numbers,sectionbib]{natbib}
\usepackage{chapterbib}

\bibliographystyle{plainnat}

\AtBeginEnvironment{quote}{\par\singlespacing\small} %formats quotes for questions

\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\nouppercase\leftmark} % adds left header
\fancyhead[R]{\nouppercase\rightmark} % adds right header
\renewcommand\chaptermark[1]{\markboth {\uppercase{\thechapter.\ #1}}{}} % removes "Chapter N" from header

\titleformat{\chapter}[display]{\normalfont\LARGE\bfseries}{}{20pt}{\LARGE}
\titlespacing*{\chapter}{0pt}{-50pt}{20pt}
\titleformat*{\section}{\Large\bfseries}
\titleformat*{\subsection}{\large\bfseries}
\titleformat*{\subsubsection}{\large\bfseries}
\titleformat*{\paragraph}{\large\bfseries}
\titleformat*{\subparagraph}{\large\bfseries}

\renewcommand\bibname{References}
\definecolor{myblue}{rgb}{0.78, 0.88, 1}
\renewcommand{\qedsymbol}{\rule{0.7em}{0.7em}}
\setlength{\parindent}{20pt}
\linespread{1.2}
\setlength{\headheight}{13.6pt}

\begin{document}
    \begin{align}
        \mathbf{A} &= \begin{bmatrix} \mathbf{v}_1 & \mathbf{v}_2 \end{bmatrix}
    \end{align}
\end{document}

相关内容