在对齐环境中对齐方程

在对齐环境中对齐方程

我想调整列并将等式放在左边,并使用等距的“或”。有什么建议可以指导我如何继续。

\documentclass{article}
\usepackage{amsmath,xcolor}

\begin{document}
\begin{align*}
    &&&&&&&&    (3x-2)(2x^{2}-13x+15)&=0 &&  \\
            &&&&&&&&        (3x-2)(2x-15)(x+1)&=0  && \color{blue} 
 {\text{Factor the trinomial}}\\
3x-2&=0 &&\text{or} & 2x-15&=0 &&\text{or} & x+1&=0 && \color{blue} 
{\text{Set each factor to zero}} \\
                  3x&=2 &&\text{or} &  2x&=15 &&\text{or} &  x&=-1  && 
 \color{blue}{\text{Solve}}\\
                                        x&=\dfrac{2}{3} &&\text{or} &   
x&=\dfrac{15}{2} &&  &  &  && \color{blue}{\text{}}\\
\end{align*}
\end{document}

在此处输入图片描述

答案1

像这样吗?

\documentclass{article}
\usepackage{amsmath,xcolor}

\begin{document}
\begin{align*}
    &&&&&&&&    \makebox[0pt][r]{$(3x-2)(2x^{2}-13x+15)$}&=0 &&  \\
            &&&&&&&&        \makebox[0pt][r]{$(3x-2)(2x-15)(x+1)$}&=0  && \color{blue} 
 {\text{Factor the trinomial}}\\
3x-2&=0 &&\text{or} & 2x-15&=0 &&\text{or} & x+1&=0 && \color{blue} 
{\text{Set each factor to zero}} \\
                  3x&=2 &&\text{or} &  2x&=15 &&\text{or} &  x&=-1  && 
 \color{blue}{\text{Solve}}\\
                                        x&=\dfrac{2}{3} &&\text{or} &   
x&=\dfrac{15}{2} &&  &  &  && \color{blue}{\text{}}\\
\end{align*}
\end{document}

在此处输入图片描述

相关内容