带左花括号的方程组

带左花括号的方程组

对于方程组,我希望使用带左花括号的符号。通常,我使用

\begin{equation}
\left\{ 
\begin{array}{ll} 
f(x)=&x^2+\ldots\\
g(x)=&x^3+\ldots\end{array}\right.
\end{equation}

但是这会在“=”和右侧之间产生一个奇怪的空白,我不喜欢这样。

有没有办法可以轻松改善这种情况?

答案1

我建议您 (a) 使用aligned环境而不是环境array以及 (b) 将的两个实例都更改=&&=

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath} % for 'aligned' env.
\begin{document}

\begin{equation}
\left\{ \begin{aligned} 
  f(x) &= x^2+\ldots\\
  g(x) &= x^3+\ldots
\end{aligned} \right.
\end{equation}
\end{document}

答案2

处理方程组时,我通常更喜欢使用“案例”环境。 结果示例

\documentclass{article}
\usepackage{amsmath}
\begin{document}

 \begin{equation}
  \begin{cases} 
    f(x) = x^2+\ldots\\
    g(x) = x^3+\ldots
  \end{cases}
 \end{equation}
\end{document}

相关内容