如何在对齐环境中刷新左侧文本?

如何在对齐环境中刷新左侧文本?

我有以下代码:

\begin{align*}
m^+\cdot k^+ &= m^+\cdot k+m^+ &\text{by M2}\\
&= m\cdot k+k+m^+ &\text{since $k\in B$}\\
&= m\cdot k+(k+m^+) \\
&= m\cdot k+(k^{+}+m) &\text{by the second result}\\
&= m\cdot k+m+k^+ &\text{commutativity of addition}\\
&= m\cdot k^{+}+k^+ 
\end{align*}

但文本全部向右对齐,但我希望它向左对齐以更接近实际方程式。

替代文本

有没有什么简单的办法可以解决这个问题?谢谢。

答案1

\documentclass{article}
\usepackage{amsmath}
\begin{document}

\begin{align*}
m^+\cdot k^+ &= m^+\cdot k+m^+   &&\text{by M2}\\
             &= m\cdot k+k+m^+   &&\text{since $k\in B$}\\
             &= m\cdot k+(k+m^+) \\
             &= m\cdot k+(k^{+}+m)&& \text{by the second result}\\
             &= m\cdot k+m+k^+    &&\text{commutativity of addition}\\
             &= m\cdot k^{+}+k^+ 
\end{align*}

\end{document}

相关内容