私はパッケージを使用していくつかのテスト問題を準備していますenumitem
。ここで見つけた 4 年前の質問から少し変更した MWE です。
\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
、まだアイデアがありません。何か提案はありますか?