|
用multirow弄了一个差不多的:
- \documentclass[preview]{standalone}
- \usepackage{graphicx} % rotatebox
- \usepackage{multirow}
- \begin{document}
- \begin{table}
- \caption{The number of conics through $p$ points, tangent to $\ell$ lines,\\and tangent to $5-p-\ell$ conics in general position.}
- \begin{tabular}{c|c|c|c|c|c|c|c|}
- \multicolumn{2}{}{} & \multicolumn{5}{c}{points} \\
- \cline{3-8}
- \multicolumn{2}{c|}{} & 0 & 1 & 2 & 3 & 4 & 5\\
- \cline{2-8}
- \multirow{6}{*}{\rotatebox{90}{lines}}
- &0&3264 & 816 & 184 & 36 & 6 &1\\
- \cline{2-8}
- &1&816&224&56&12&2 \\
- \cline{2-7}
- &2&184&56&16&4\\
- \cline{2-6}
- &3&36&12&4 \\
- \cline{2-5}
- &4&6&2\\
- \cline{2-4}
- &5&1\\
- \cline{2-3}
- \end{tabular}
- \end{table}
- \end{document}
复制代码 |
|