我正在为学生准备一份文件,用于记录他们的实验结果。什么是适合记录结果的表格?合适的表格应该有较大的单元格,方便手写。在我的例子中,只需要两列(多行),一列是尝试次数,另一列是速度或反应时间。
答案1
看来你只需要一个tabular
环境:
\documentclass{article}
\usepackage[margin=0.5in]{geometry}
%% #1=width
%% #2=height
\def\cellDimensions#1#2{\rule{#1}{0pt}\rule{0pt}{#2}}
\def\resultRow{\cellDimensions{1cm}{1cm} & \cellDimensions{3cm}{1cm} \\\hline}
\pagestyle{empty}
\begin{document}
\begin{tabular}{|c|c|}\hline
Attempt \# & Speed/reaction time \\\hline
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\resultRow
\end{tabular}
\end{document}
通过像我这样定义\resultRow
,我可以轻松调整单元格的宽度和高度。行高将是声明的最高单元格的高度。