如何为书面工作表创建空白表

如何为书面工作表创建空白表

我想创建一个带有表格的工作表供学生填写。在表格中留出空间以便学生有足够的空间写下答案的最简单方法是什么?到目前为止的表格代码:

\begin{tabular}{|c|c|c|c|c|c|c|}
\hline
$\times$ & $1$ & $r$ & $r^2$ & $s$ & $t$ & $u$ \\ 
\hline
$1$ &  &  &  &  &  &  \\ 
\hline
$r$ &  &  &  &  &  &  \\ 
\hline
$r^2$ &  &  &  &  &  &  \\ 
\hline
$s$ &  &  &  &  &  &  \\ 
\hline
$t$ &  &  &  &  &  &  \\ 
\hline
$u$ &  &  &  &  &  &  \\ 
\hline
\end{tabular}

答案1

\documentclass{article}
\usepackage{tabularx}
\newcolumntype{C}{>{\centering\arraybackslash $}X<{$}}
\usepackage{geometry}

\begin{document}
\begin{tabularx}{\textwidth}{@{\rule[-3ex]{0pt}{7ex}}|*{7}{C|}}
\hline
\times & 1 & r & r^2 & s & t & u \\
\hline
1 &  &  &  &  &  &  \\
\hline
r &  &  &  &  &  &  \\
\hline
r^2 &  &  &  &  &  &  \\
\hline
s &  &  &  &  &  &  \\
\hline
t &  &  &  &  &  &  \\
\hline
u &  &  &  &  &  &  \\
\hline
    \end{tabularx}
\end{document}

给出

在此处输入图片描述

这就是你要找的吗?

相关内容