代码:

代码:

我不知道如何在 中创建类似checkboxes或环境的东西。唯一的区别是,由于给出了圆形,我想创建一个提供方框以供多项选择的环境。oneparcheckboxesexam.clscheckboxes

.tex当我在文件中输入此内容时:

\documentclass{exam}
\begin{document}
\begin{questions}
\question How should I?
\begin{checkboxes}
\choice AA \choice BB \choice CC
\end{checkboxes}
\end{questions}
\end{document}

它将输出一个垂直的选择通道,例如

在此处输入图片描述

和使用oneparcheckboxes环境:

 \begin{onecheckboxes}
 \choice AA \choice BB \choice CC
 \end{onecheckboxes}

在此处输入图片描述

我想创建类似的checkboxes东西oneparcheckboxes

在此处输入图片描述

答案1

您可以使用\checkboxchar{$\square$}

代码:

\documentclass{exam}
\usepackage{amssymb}
\checkboxchar{$\square$}
\begin{document}
\begin{questions}
\question How should I?
\begin{checkboxes}
\choice AA \choice BB \choice CC
\end{checkboxes}

\question How should I?
 \begin{oneparcheckboxes}
 \choice AA \choice BB \choice CC
 \end{oneparcheckboxes}
\end{questions}
\end{document}

在此处输入图片描述

您可能还喜欢添加\checkedchar{$\blacksquare$}序言,只是为了保持美观。

相关内容