像调查问卷一样放置供用户选择的方框

像调查问卷一样放置供用户选择的方框

在此处输入图片描述

我想在两个文本部分之间放置方框。我该怎么做?

答案1

使用 amssymb 和\square

代码:

\documentclass{article}
\usepackage{amssymb}
\begin{document}

\textbf{How satisfied are you with the temperature in your office today?}

\center{
Very Satisfied  $\square\hspace{5pt}\square\hspace{5pt}\square\hspace{5pt}\square\hspace{5pt}\square\hspace{5pt}\square\hspace{5pt}\square$  Very Dissatisfied}

\end{document} 

得出:

在此处输入图片描述

相关内容