当我们尝试减去代数方程时,我们需要改变符号,如何在乳胶中输入并产生结果
答案1
您可以将整个结构设置到array
:
\documentclass{article}
\begin{document}
\[
\setlength{\arraycolsep}{0pt}% Remove column separation
\begin{array}{ c r c r c r }
- & 15 x^2 y & {}+{} & 3x & {}-{} & 15 \\
+ & 10 x^2 y & {}+{} & 10x & {}-{} & 7 \\
- & & {}-{} & & {}+{} & \\
\hline
- & 25 x^2 y & {}-{} & 7x & {}-{} & 8
\end{array}
\]
\end{document}
使用 校正运算符周围的空格(从一元到二元){}<op>{}
。
好一个!