答案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}