方程之间的不期望空间

方程之间的不期望空间

我想写四个等式:一个在左上角A_f=...,一个在右上角B_f=...,一个在左下角C_f=...,第四个在右下角D_f=...

方程A_f=...要与方程对齐C_f=...,方程 B_f=...要与对齐D_f=...

下面的代码产生了所需的对齐,但是我在等式之间有一个不想要的空间(见图)。我该如何解决这个问题?在此处输入图片描述

代码:

 \documentclass[12pt]{article}

 \usepackage{amsmath}

 \begin{document}

 \begin{align*}
  A_f&=
  \begin{bmatrix}
 -10.6448 &  14.7778 \\
 -0.3811  & -1.5941
  \end{bmatrix}
  &B_f&=\begin{bmatrix}
  0.0962 \\
  2.3280 
  \end{bmatrix} \\
  C_f&=\begin{bmatrix}
  -1.0000 & 2000
  \end{bmatrix}
  &D_f&=-1.6607 
  \end{align*}
  \end{document}

答案1

使用alignat

\documentclass[12pt]{article}

 \usepackage{amsmath}

 \begin{document}

 \begin{alignat*}{2}
  A_f &=
  \begin{bmatrix}
   -10.6448 &  14.7778 \\
   -0.3811  & -1.5941
   \end{bmatrix} & \quad
   B_f&=\begin{bmatrix}
   0.0962 \\
   2.3280 
  \end{bmatrix} \\
   C_f&=\begin{bmatrix}
  -1.0000 & 2000
  \end{bmatrix} &
   D_f&=-1.6607 
  \end{alignat*}
\end{document}

相关内容