在考试中创建方形勾选框

在考试中创建方形勾选框

就像标题一样,我想创建这样的方框,但考试中的 \checkboxes 只创建圆形。有人能帮我吗 TT

\documentclass[10pt,a4paper]{exam} 
\usepackage{amsmath} 
\usepackage{amssymb}
\usepackage{multicol}
\usepackage[left=1.5cm,right=2cm,top=2cm,bottom=2cm]{geometry}

\checkboxchar{$\Box$}
\begin{document}
    \textbf{Question 1:} 
    \begin{multicols}{2}
        \begin{checkboxes}
            \choice $1$
            \choice $2$
        \end{checkboxes}
        \begin{checkboxes}
            \choice $3$
            \choice $4$
        \end{checkboxes}
    \end{multicols}
\end{document}

在此处输入图片描述

答案1

感谢您提供出色的 MWE!您可以使用命令\checkboxchar更改框的外观,以及使用基本命令指定框的大小,以更改字体大小并使用以下方式将其上下移动\raisebox

\documentclass[10pt,a4paper]{exam} 
\usepackage{amsmath} 
\usepackage{amssymb}
\usepackage{multicol}
\usepackage[left=1.5cm,right=2cm,top=2cm,bottom=2cm]{geometry}

\checkboxchar{\raisebox{-.2em}{\Large$\Box$}}
\begin{document}
    \textbf{Question 1:} 
    \begin{multicols}{2}
        \begin{checkboxes}
            \choice $1$
            \choice $2$
        \end{checkboxes}
        \begin{checkboxes}
            \choice $3$
            \choice $4$
        \end{checkboxes}
    \end{multicols}
\end{document}

在此处输入图片描述

相关内容