更好地展示方程解法的步骤

更好地展示方程解法的步骤

有没有更好的方法来展示方程解的步骤?恕我直言,下面的方法看起来不太好。

\documentclass[preview,border=12pt]{standalone}
\usepackage{mathtools}
\usepackage[a6paper]{geometry}
\begin{document}
\begin{align*}
x^2 &= 25 \\
x^2 &= 5^2      & \text{or}&&       x^2 &= (-5)^2 \\
x   &=5             & \text{or}&&           x   &=-5
\end{align*}
\end{document}

在此处输入图片描述

答案1

我会这样写:

\documentclass{article}
\usepackage{witharrows}
\usepackage{amstext} % for \text
\begin{document}
\begin{DispWithArrows*}[wrap-lines]
x^2 = 25 
& \Longleftrightarrow x^2-25 = 0 \\
& \Longleftrightarrow (x-5)(x+5) = 0 
\Arrow{a product equals zero iff a factor equals zero} \\
& \Longleftrightarrow x=5 \text{ or } x=-5
\end{DispWithArrows*}
\end{document}

上述代码的结果

相关内容