如何得出以下方程

如何得出以下方程

在此处输入图片描述

让方程式在 $=$ 符号处对齐

答案1

假设您不仅想对符号执行对齐,=还想对x^3、、和标量项执行对齐,那么以下基于的解决方案可能会让您感兴趣。x^2xarray

在此处输入图片描述

\documentclass{article} 
\usepackage{amsmath}  % for '\dfrac' macro
\usepackage{booktabs} % for '\midrule' macro
\usepackage{array}    % for '\newcolumntype' macro
\newcolumntype{C}{>{{}}c<{{}}} % for mathbin and mathrel objects
\begin{document}
\[
\setlength\arraycolsep{0pt} % default: 5pt
\begin{array}{*{4}{rC} l}
y & = &  x^3 & + & 3x^2 & - &   4x & - & 12    \\ 
0 & = & -x^3 & - & 3x^2 & + & 3.5x & + & 10.5  \\
\midrule
y & = &      &   &      & - & 0.5x & - & 1.5 
\end{array}
%
\begin{array}{c}
  \left.\begin{array}{c} 
    \null \\ \null 
  \end{array}\right\} + \\
  \addlinespace 
  \null 
\end{array} 
\]
\end{document}

答案2

使用系统包,我有这个 在此处输入图片描述

这里是代码:

\documentclass{article}
\usepackage{amsfonts, amsmath, amssymb}
\usepackage{systeme}

\title{stack tex equation}
\author{Equation}
\date{\today}

\begin{document}
\maketitle

\begin{equation*}
  \frac{\sysdelim.\}\systeme{y=x^3 + 3x^2 - 4x - 12, y = -x^3 - 3x^2 + 3.5x + 10.5} \quad{+}}{y = -\frac{1}{2}x - 1.5}
\end{equation*}

\end{document}

这可能看起来不错并且足够了,特别是当您需要执行多个这样的系统时。

相关内容