
많은 솔루션을 작성하기 전에 문서에서 일관되게 사용할 스타일을 채택하고 싶습니다. 지금까지 나는 다음과 같이 방정식의 해를 작성했습니다. 이것을 검토해 주실 수 있나요? 내 의견, 제안, 개선 사항 등을 더 좋게 만들고 더 읽기 쉽게 만드는 등의 의견은 언제나 환영합니다.
\documentclass[border=12pt,preview]{standalone}
\usepackage{amsmath}
\begin{document}
Solve $-5(1 - 7 x) (3 x + 10) (2 x + 1)=0$ with factorization.
\begin{gather*}
-5(1 - 7 x) (3 x + 10) (2 x + 1)=0\\
1-7x =0 \qquad \text{or}\qquad 3x+10 = 0 \qquad \text{or}\qquad 2x+1=0 \\
-7x =-1 \qquad \text{or}\qquad 3x = -10 \qquad \text{or}\qquad 2x=-1 \\
\begin{aligned}[t]
x &= \frac{-1}{-7}\\
&= \frac{1}{7}
\end{aligned} \qquad \text{or}\qquad
\begin{aligned}[t]
x &= \frac{-10}{3}\\
&= -\frac{10}{3}
\end{aligned}
\qquad \text{or}\qquad
\begin{aligned}[t]
x &= \frac{-1}{2}\\
&= -\frac{1}{2}
\end{aligned}
\end{gather*}
Thus the solution is $x\in \{-\frac{10}{3},-\frac{1}{2},\frac{1}{7}\} $.
\end{document}
답변1
이것이 방정식을 정렬하는 더 좋은 방법인 것 같나요?
\documentclass[border=12pt,preview]{standalone}
\usepackage{amsmath}
\newcommand{\nxt}{& &&} %% next column
\newcommand{\nxr}{&\text{or} &&} %% next column with "or"
\begin{document}
Solve $-5(1 - 7 x) (3 x + 10) (2 x + 1)=0$ with factorization.
%
\begin{align*}
-5(1 - 7 x) (3 x + 10) (2 x + 1) = 0
\end{align*}
%
\begin{align*}
1-7x &= 0 \nxr 3x+10 &= 0 \nxr 2x+1 &= 0 \\
-7x &= -1 \nxr 3x &= -10 \nxr 2x &= -1 \\
x &= \frac{-1}{-7} \nxr x &= \frac{-10}{3} \nxr x &= \frac{-1}{2} \\
&= \frac{1}{7} \nxt &= -\frac{10}{3} \nxt &= -\frac{1}{2}
\end{align*}
%
Thus the solution is $x\in \{-\frac{10}{3},-\frac{1}{2},\frac{1}{7}\} $.
\end{document}