\systeme、\amsmath、\enumerate 和 \tasks 包之间的代码冲突

\systeme、\amsmath、\enumerate 和 \tasks 包之间的代码冲突

堆垛机:

我将来自不同堆栈用户的 3 个不同代码段拼接在一起,尝试创建:

  1. 针对线性方程组的 2 列水平枚举数学问题集。
  2. 2 个方程组使用 \systeme (h/t @egreg) 进行对齐。
  3. 在方程组正下方,我想要以“堆叠”垂直排列的方式显示逐步的解决过程,其中变量是孤立的。

不幸的是,当前的代码仅呈现第一行文本。

这位对乳胶完全困惑的新手请求您的帮助。

提前致谢!

平均能量损失

\documentclass[12pt]{exam}
\usepackage{amsmath}
\usepackage{systeme}
\usepackage{multicol}
%the enumeration is horizontal with only the system of equations with cleft curly brace enumerated
% 1) {x +   y = 3
%     2x + 3y = 6
\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 {elimination method}:

\begin{tasks}(2)
\[
\syslineskipcoeff{1}
\systeme*{-7x+7y=14, -3x-y=26}
\]
%step-by-step solution procedure goes here. 
Solution procedure uses vertical stack. (h/t @mico)
%Numbers below are only example layout and don't match the original system of equations.
\[
\setlength\arraycolsep{0pt}
\setlength\extrarowheight{3pt}
\begin{array}{RCRCRCR}
 3x & - & 2y & = & \multicolumn{3}{R}{-1} \\
-3x &   &    &   & -3x \\
\hline
\multicolumn{3}{R}{-2y} & = & -3x & - &  1 \\[2.5ex]
\multicolumn{3}{R}{\frac{-2y}{-2}} & = & 
     \multicolumn{3}{R}{\frac{-3x-1}{-2}}\\[3ex]
& & y & = & \frac{3x}{2} & + & \frac{1}{2} \\
\end{array}
\]
\end{tasks}
end{enumitem,tasks}
\end{document}

答案1

您需要一个\task命令和$...$,而不是\[...\]

\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 {elimination method}:

\begin{tasks}(2)
\task $\syslineskipcoeff{1}\systeme*{-7x+7y=14, -3x-y=26}$
\\
$\setlength\arraycolsep{0pt}
\setlength\extrarowheight{3pt}
\begin{array}{rcrcrcr}
 3x & - & 2y & = & \multicolumn{3}{r}{-1} \\
-3x &   &    &   & -3x \\
\hline
\multicolumn{3}{r}{-2y} & = & -3x & - &  1 \\[2.5ex]
\multicolumn{3}{r}{\frac{-2y}{-2}} & = & 
     \multicolumn{3}{r}{\frac{-3x-1}{-2}}\\[3ex]
& & y & = & \frac{3x}{2} & + & \frac{1}{2} \\
\end{array}$
\end{tasks}

\end{document}

在此处输入图片描述

注意:我用R和替换了Crc因为您没有显示如何定义这些列类型。

相关内容