I'm trying to create a tabular (7 rows, 4 columns) that is empty so the students can fill it out on a sheet. What I found here in this forum:
\begin{document}
\begin{tabular}{|l|@{\hspace{10em}}|}
\hline A \\
\hline B \\
\hline
\end{tabular}
\end{document}
This will set the hspace properly (after the first column which I also want to be big), but I also want it vertically to be bigger, so that every cell is big enough to write something in. If possible I want to do it without installing a package.


