다중 선택에 적합한 간격

다중 선택에 적합한 간격

패키지를 사용하여 몇 가지 시험 문제를 준비하고 있습니다 enumitem. MWE 여기에서 4년 된 질문을 찾아서 약간 수정했습니다.

\documentclass{article}
\usepackage{amsmath}
\usepackage{enumitem}
\usepackage{multicol}

\newlist{choices}{enumerate}{1}
\setlist[choices]{label*=(\Alph*)}
\newcommand{\choice}{\item}

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

\SetEnumitemKey{threecol}{
  before=\raggedcolumns\begin{multicols}{3},
  after=\end{multicols}}

\begin{document}
Which fractions are reduced (one column)?
\begin{choices}
  \choice long answer long answer long answer
   \choice $\dfrac{8}{24}$
   \choice $\dfrac{44}{121}$
   \choice $\dfrac{9}{11}$
\end{choices}

Which fractions are reduced (two columns)?
\begin{choices}[twocol]
   \choice long answer  long answer  long answer
   \choice $\dfrac{8}{24}$
   \choice $\dfrac{44}{121}$
   \choice $\dfrac{9}{11}$
\end{choices}

Which fractions are reduced (three columns)?
\begin{choices}[threecol]
   \choice long answer  long answer  long answer
   \choice $\dfrac{8}{24}$
   \choice $\dfrac{44}{121}$
\end{choices}

\end{document}

내 질문은 - 적절한 너비의 열을 얻는 방법은 무엇입니까? 길고 긴 대답이 깨지면 안됩니다. 설명서를 읽었지만 enumitem여전히 아이디어가 없습니다. 제발, 어떤 제안이라도??

관련 정보