简单的多项选择考试

简单的多项选择考试

大家好。我是 Latex 的新手,我想创建一个简单的多项选择测试,如下所示:

  1. 多边形的边数和叫什么?

    A. Leg B. Perimeter C. Area D. Volume
    
  2. -2 和 3 的乘积是多少?

    A. -6 B. 6 C. 5 D. -5

*我希望 A、B、C、D 与其他数字中的选择保持一致。

答案1

例如,您可以使用包tasks

梅威瑟:

\documentclass{article}
\usepackage{tasks}

\NewTasks[style=enumerate,counter-format=tsk[A].,label-width=3ex]{choice}[\item](4)

\begin{document}

\begin{enumerate}
  \item What is the sum of the sides of a polygon called?
  \begin{choice}
    \item Leg
    \item Perimeter
    \item Area
    \item Volume
  \end{choice}
  \item What is the product of $-2$ and $3$?
  \begin{choice}
    \item $-6$
    \item $6$
    \item $5$
    \item $-5$
  \end{choice}
\end{enumerate}
\end{document} 

输出:

在此处输入图片描述

相关内容