From 6d53516c5c872b1e8a247f6d504fd3c50b75d0d8 Mon Sep 17 00:00:00 2001 From: OrhanBC <67674376+OrhanBC@users.noreply.github.com> Date: Wed, 3 Apr 2024 12:46:06 -0400 Subject: [PATCH 1/2] Change \systeme{} to align* --- book/modules/appendix1.tex | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/book/modules/appendix1.tex b/book/modules/appendix1.tex index 84363d1..5dc5aaf 100644 --- a/book/modules/appendix1.tex +++ b/book/modules/appendix1.tex @@ -13,10 +13,13 @@ Additional relationships give rise to additional equations, which we express concisely as a \emph{system of equations}, that is, a list of equations. For example, suppose you know the cake had six pieces and your brother ate twice as many pieces as you. We might now write the system - \[ - \sysdelim.. - \systeme{C=M+B,B=2M,C=6} - \] + + \begin{align*} + &C = M + B \\ + &B = 2M \\ + &C = 6 + \end{align*} + which should be interpreted as: ``the relationship $C=M+B$ holds \emph{and} the relationship $B=2M$ holds \emph{and} the relationship $C=6$ holds.'' All this information, taken together, is enough to deduce the unknowns: $M=2$, $B=4$, and $C=6$. From 4e4be6972eae08df85564db3fd8f43f2209d9c80 Mon Sep 17 00:00:00 2001 From: OrhanBC <67674376+OrhanBC@users.noreply.github.com> Date: Wed, 3 Apr 2024 13:31:03 -0400 Subject: [PATCH 2/2] Fix align* --- book/modules/appendix1.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/book/modules/appendix1.tex b/book/modules/appendix1.tex index 5dc5aaf..9b17810 100644 --- a/book/modules/appendix1.tex +++ b/book/modules/appendix1.tex @@ -15,9 +15,9 @@ had six pieces and your brother ate twice as many pieces as you. We might now write the system \begin{align*} - &C = M + B \\ - &B = 2M \\ - &C = 6 + C &= M + B \\ + B &= 2M \\ + C &= 6 \end{align*} which should be interpreted as: ``the relationship $C=M+B$ holds \emph{and} the relationship $B=2M$ holds \emph{and}