答案1
假设您不仅想对符号执行对齐,=
还想对x^3
、、和标量项执行对齐,那么以下基于的解决方案可能会让您感兴趣。x^2
x
array
\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}
这可能看起来不错并且足够了,特别是当您需要执行多个这样的系统时。