如何获取练习的水平部分?

如何获取练习的水平部分?

我的问题是如何指定问题的各个部分水平排版,并指定行数以及如下所示的选项。练习中的枚举级别以小写字母(而不是数字)开头也很重要。

在此处输入图片描述

答案1

tasks这是使用其他用户的软件包的解决方案克莱门斯

为了得到三列,比如

\begin{tasks}(3) 
\task ... 
\task etc. 
\end{tasks}

任务标签可以用 来更改counter-format={(tsk[a])},其中“tsk”将被实际任务计数器替换。[a]将使用\alph,即小写字符。(tasks有关更多选项,请参阅手册)

\documentclass{article}


\usepackage{mathtools}

\usepackage{tasks}

\begin{document}

\begin{enumerate}
\item Evaluate each expression without calculator
\settasks{counter-format={(tsk[a])},label-offset=1em}
\begin{tasks}(3)
  \task $(-3)^4$ 
  \task $-3^4$
  \task $3^{-4}$
  \task $\dfrac{5^{23}}{5^{21}}$
  \task $\left(\dfrac{2}{3}\right)^{-2}$
  \task $16^{-3/4}$
\end{tasks}
\end{enumerate}

\end{document}

在此处输入图片描述

相关内容