我正在尝试展开一个多项式,使得同次系数对齐,就像这样
\begin{alignat*}{6}
f(t)
&={} (t + 1)^4 - (t + 1)^3 +2(t + 1) + 1\\
&={} &t^4 &{}+{} &4t^3 &{}+{} &6t^2 &{}+{} &4t &{}+{} &1\\
& & &{}-{} &t^3 &{}-{} &3t^2 &{}-{} &3t &{}-{} &1\\
& & & & & & &{}+{} &2t &{}+{} &2\\
& & & & & & & & &{}+{} &1
\end{alignat*}
然而,这会导致以下情况
而目标是从第二行开始的那些行将与第一行对齐。
我知道这是因为我在第一行中没有足够的内容&
,但似乎不可能将一些内容放在准确的位置以实现这一点。
也许不同的对齐环境会更好?
我喜欢这个,因为我可以通过系数对齐扩展,但另一个能给出正确结果的环境也可以。或者也许可以在上面添加一些技巧。
谢谢
答案1
这是一个使用 11 列array
环境的解决方案。
\documentclass{article}
\usepackage{mathtools} % for '\mathrlap' macro
\usepackage{array} % for '\newcolumntype' macro
\newcolumntype{C}{>{{}}c<{{}}} % for binary and relational operators
\newcolumntype{R}{>{\displaystyle}r} % automatic displaystyle math mode
\newcolumntype{L}{>{\displaystyle}l} % automatic displaystyle math mode
\usepackage{booktabs} % for '\midrule' and '\addlinespace' macros
\begin{document}
\[
\setlength\arraycolsep{0pt}
\renewcommand\arraystretch{1.25}
\begin{array}{ R *{5}{CR} } % 11 columns in all
f(t) &=& \multicolumn{9}{L}{\mathrlap{(t + 1)^4 - (t + 1)^3 + 2(t + 1) + 1}} \\
\addlinespace
&=& t^4 &+& 4t^3 &+& 6t^2 &+& 4t &+& 1 \\
& & &-& t^3 &-& 3t^2 &-& 3t &-& 1 \\
& & & & & & &+& 2t &+& 2 \\
& & & & & & & & &+& 1 \\
\midrule % optional
f(t) &=& t^4 &+& 3t^3 &+& 3t^2 &+& 3t &+& 3 % optional
\end{array}
\]
\end{document}
答案2
嵌套array
在里面align
,这比使用更简单alignedat
。
\documentclass{article}
\usepackage{array}
\usepackage{amsmath}
\begin{document}
\begin{align*}
f(t)
&= (t + 1)^4 - (t + 1)^3 +2(t + 1) + 1 \\
&= \setlength{\arraycolsep}{0pt}
\renewcommand{\arraystretch}{1.5}
\begin{array}[t]{*{4}{r >{{}}c<{{}}}r}
t^4 &+& 4t^3 &+& 6t^2 &+& 4t &+& 1 \\
&-& t^3 &-& 3t^2 &-& 3t &-& 1 \\
& & & & &+& 2t &+& 2 \\
& & & & & & &+& 1
\end{array} \\
&= t^4+3t^3+3t^2+3t+3
\end{align*}
\end{document}
替代方法是IEEEeqnarray
。我们只需要一个“幻影列”。
\documentclass{article}
\usepackage{IEEEtrantools}
\usepackage{amsmath}
\begin{document}
\begin{IEEEeqnarray*}{r C r C r C r C r C r l}
f(t)
&=& \IEEEeqnarraymulticol{10}{l}{(t + 1)^4 - (t + 1)^3 +2(t + 1) + 1} \\
&=& t^4 &+& 4t^3 &+& 6t^2 &+& 4t &+& 1 \\
& & &-& t^3 &-& 3t^2 &-& 3t &-& 1 \\
& & & & & & &+& 2t &+& 2 \\
& & & & & & & & &+& 1 \\
&=& \IEEEeqnarraymulticol{10}{l}{t^4+3t^3+3t^2+3t+3}
\end{IEEEeqnarray*}
\end{document}
答案3
答案4
这使得吨但我不能说我很喜欢这个结果,你可以添加更多&
并对齐 +/-,但不对齐术语可能更具可读性
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{alignat*}{-1}
f(t)
&= &(&t + 1)^4 - &(&t + 1)^3 && + &2(&t + 1) + &1\\
&= &&t^4 &+4&t^3 + &6&t^2 + &4&t + &1\\
& && &-&t^3 - &3&t^2 - &3&t - &1\\
& & & & & & & + &2&t + &2\\
& & & & & & & & & + &1
\end{alignat*}
\end{document}