有两列的方程

有两列的方程

我怎样才能写出以下方程式

在此处输入图片描述

我尝试过对齐,但是没有用

\begin{aligned}
\f_1(x) &=g_0 & \f_1(x) &=g_0 \\
\f_2(x) &=g_1 & \f_2(x) &=g_1 \\
\vdots & \vdots 
\end{aligned}

答案1

在这种情况下,您需要用 来写入alignat,它允许您指定列之间的水平分隔量(\qquad在下面的示例中)。

如果您使用mathtools包( 的“扩展”)amsmath,则可以轻松对齐垂直点并在两种可能的垂直间距之间进行选择。在下面的示例中,我选择了较小的垂直空间。如果您想要更大的空间,请使用\vdotswithin{=}

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{alignat}{2}
A &= B &\qquad  C &= D \\
\MTFlushSpaceAbove
&\vdotswithin{=} & &\vdotswithin{=}
\MTFlushSpaceBelow
C &= D &        Y &=K
\end{alignat}
\end{document}

在此处输入图片描述

答案2

\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator{\f}{f}
\begin{document}
\begin{equation*}
\begin{aligned}
\f_1(x) & =g_0 & \f_1(x) &  =g_0 \\
\f_2(x) & =g_1 & \f_2(x) &  =g_1 \\
\vdots  &      & \vdots  \\
\f_m(x) & =g_m & \f_m(x) &  =g_m \\
\end{aligned}
\end{equation*}
\end{document}

在此处输入图片描述

相关内容