目前我使用如下方式编写
\[
3 + 4 = \underline{\hspace{2cm}}
\]
在我正在准备的试卷中。\underline
表示学生应该在哪里写答案。
但是,我想将下划线改为空白框,学生可以在其中填写答案,例如数字。这样我就可以控制他们写的字体大小。
答案1
参见此代码:
\documentclass[10pt,a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\parindent=0mm
\begin{document}
\begin{enumerate}
\item 3+4=\\ \hfill \framebox(\textwidth,10){}\\
\item 7x5=\\ \hfill \framebox(\textwidth,10){}\\
\item $\dfrac{x^2-1}{x-1}=$\\ \hfill \framebox(\textwidth,20){}\\
\item $ \int x^2\,dx=$\\ \hfill \framebox(\textwidth,30){}\\
\item Make the construction of an equilater triangle with a ruler and a compass.\\ \hfill \framebox(\textwidth,150){}\\
\end{enumerate}
\end{document}
和他的输出: