연습 환경에서 수평으로 정렬된 답변을 얻는 방법

연습 환경에서 수평으로 정렬된 답변을 얻는 방법

다음 MWE는 답변을 다음과 같이 수직으로 정렬합니다.

1.     4.     7.     10.
2.     5.     8.     11.
3.     6.     9.

MWE:

\documentclass[11pt]{exam}

\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{multicol}
\usepackage{ifthen}
\newboolean{firstanswerofthechapter}  
\usepackage{stackengine}
\usepackage{tasks}
\newlength{\longestlabel}
\settowidth{\longestlabel}{\bfseries\sffamily vv}
\settasks{after-item-skip=3pt,%gap for next row
        before-skip=2pt,%gap from the text above    
        after-skip=0pt,%gap for next question
        label-width=20pt,%width from left
        item-indent=25pt,%indent from left
        label=$\EgyptianBlue\bm{(\alph*)}$,
        column-sep=0em, label-align=left}

\usepackage[lastexercise,answerdelayed]{exercise}


\begin{document}

\setcounter{Exercise}{0}

\begin{Exercise}
   \Question
   \Question
   \Question
\end{Exercise}
    
\begin{Answer}
    \begin{multicols}{4}
        \Question $(a)$
        \Question $(a)$
        \Question $(a)$
        \Question $(a)$
        \EndCurrentQuestion
    \end{multicols}
\end{Answer}
\setboolean{firstanswerofthechapter}{false}
\shipoutAnswer

\end{document}

하지만 나는 그것들이 수평으로 정렬되기를 원합니다. 패키지 를 사용하고 싶지 않습니다 tasks.

관련 정보