我正在尝试排版这个凌乱的手写解决方案:
我计划将解决方案的“检查”部分放在 (x,y) 解决方案正下方的 2 列表格中 - 即系统中每个方程式 1 个单元格。
但是尽管语法有很多变化array
,我仍然可以得到非常正确的对齐,正如您在编译时看到的那样。
日志文件中还有另外一个问题...我找不到丢失的数学特殊标记:
我的学生非常渴望看到这一点,因此非常感谢您的帮助。
提前致谢!
姆韦
\documentclass[12pt]{exam}
\usepackage{amsmath}
\usepackage{systeme}
\usepackage{array}
\usepackage{enumitem,tasks}
\settasks{
% after-item-skip=5em,
% after-skip=2cm,
label-width=2em,
item-indent=3em,
label=(\arabic*),
column-sep=2em,
}
\begin{document}
Solve each system of equations using the \textbf {substitution method}:
\begin{tasks}(2)
\task $\syslineskipcoeff{1}\systeme*{3x+y=-5, 11x+y=-21}$
\\
\\Rewrite 1st equation in terms of $y$
$\setlength\arraycolsep{0pt}
\setlength\extrarowheight{3pt}
\begin{array}{rcrcrcr}
3x & + & y & = & \multicolumn{3}{c}{-5} \\
-3x & & & & -3x \\
\hline
\multicolumn{3}{r}{y} & = & -3x & - 5 \\[2.5ex]
%Substitute \[-3x-5\]
%for \[y\] in 2nd equation
\multicolumn{3}{r}{11x&-&3x-5} & = -21\\
\multicolumn{3}{r}{8x-5} &=&-21\\[3ex]
8x&-&5&=-21
\\
&+5 & & +5 \\
\hline
&8x&=-16\\
&x&=-2
\end{array}$
\end{tasks}
\end{document}
答案1
这是一个使用该包的\mathllap
和宏的解决方案。\mathrlap
mathtools
\documentclass[12pt]{exam}
\usepackage{mathtools} % for \mathllap and \mathrlap macros
\usepackage{systeme}
\usepackage{array}
\newcolumntype{C}{>{{}}c<{{}}}
\usepackage{enumitem}
\usepackage{tasks}
\settasks{
% after-item-skip=5em,
% after-skip=2cm,
label-width=2em,
item-indent=3em,
label=(\arabic*),
column-sep=2em,
}
\begin{document}
Solve each system of equations using the \textbf{substitution method}:
\begin{tasks}(2)
\task $\syslineskipcoeff{1}\systeme*{3x+y=-5, 11x+y=-21}$
\medskip
Rewrite the first equation in terms of~$y$:
\[
\setlength\arraycolsep{0pt}
\setlength\extrarowheight{3pt}
\begin{array}{rCrCr}
3x & + & y & = & -5 \\
-3x & & & & -3x \\
\hline
& & y & = & -3x\mathrlap{{}- 5} \\[3ex]
%Substitute \[-3x-5\] for \[y\] in 2nd equation
11x-3x & - & 5 & = & -21\\
8x & - & 5 & = & -21\\[3ex]
8x & - & 5 & = & -21\\
& + & 5 & & +5\\
\hline
& &\mathllap{8x} & = & -16\\
& & x & = & -2
\end{array}
\]
\end{tasks}
\end{document}