两列数字问题

两列数字问题

我正在创建工作表,我想创建多行 2 列的工作表。我希望数字水平排列,即

1. math problem              2. math problem
3. math problem              4. math problem
5. math problem              6. math problem
7. math problem              8. math problem

我正在从事文章课程(尽管我也需要这门课程用于考试课程)并且一直在研究数组/表格、小页面和创建我自己的命令......我对此还很陌生,感谢您的耐心。

\documentclass[twoside]{article}
\usepackage{amsmath,amsfonts,amssymb,graphicx,mathtools,flexisym, array, multirow, tabularx, enumitem, multicol}

\newlist{mparts}{enumerate}{1}
\setlist[mparts]{label*=(\arabic*)}
\newcommand{\mpart}{\item}

\SetEnumitemKey{twocol}{
  before=\raggedcolumns\begin{multicols}{2},
  after=\end{multicols}}

\begin{document}
\subsection{Finding Limits Analytically}
When a function is defined and continuous at a value $x=a$, how can $\lim 
\limits_{x\to a} f(x)$ be found analytically?
\vspace{0.5in}
\begin{mparts}[twocol]
    \mpart $\lim \limits_{x\to 3} \dfrac{1}{2}x^2-2x+3$
    \mpart $\lim \limits_{x\to 3} \dfrac{5x+2}{2x-3}$
    \mpart $\lim \limits_{x\to 2^{-}} \dfrac{\sqrt{x+2}-1}{x+1}$
    \mpart $\lim \limits_{\theta \to \frac{\pi}{2}} \sin{2\theta}$
\end{mparts}
\end{document}

如您所见,随着我添加更多问题,编号会垂直向下。虽然这主要是表面现象,但我想知道如何将其更改为我喜欢的样子。

我也不知道如何在这里插入图片。不过格式一般是这样的:

1. math problem          3. math problem
2. math problem          4. math problem

非常感谢!

答案1

利用

   \usepackage{tasks}
    \NewTasks[style=enumerate]{myitemize}[\item](2)

    %you can edit the style to "itemize" for bullets
    %you can change the number from '2' to any number of columns you would like

        \begin{document}

        \begin{myitemize}
          \item item 1
          \item item 2
          \item item 3
          \item item 4
        \end{myitemize}

        \end{document}

相关内容