Possible Duplicate:
How to divide a table row into several columns?
I want to make a table. This is my code
\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{tabular}{| c | c | c | c |}
\hline
\multirow{3}{*}{\textbf{TOTAL OF POINTS}} & \hspace{2.5cm} TEACHERS \hspace{2.5cm} & Number \\ & (Name and sign) & (President \\ & & Number of points) \\
\hline
First test\hspace{1cm} Second test & & \\
& & \\
& & \\
\cline{2-2}
& & \\
& & \\
& & \\
\hline
\end{tabular}
\end{document}
How can I draw a line between First test and second test like the picture?
Best Answer
It's more natural to think of those as two separate columns, and to keep the table heads in a single multi-line cell, something like: