Following is my code:
\documentclass[a4paper,10pt]{article}
%\documentclass[a4paper,10pt]{scrartcl}
\usepackage[utf8x]{inputenc}
\usepackage{booktabs}
\begin{document}
\begin{table}[htbp]
\caption{Case-studies}
\centering
\begin{tabular}{lllllllllll}
\toprule
\multicolumn{8}{c}{Full} \\
\cmidrule(r){4-5}
\cmidrule(r){6-7}
\cmidrule(r){8-9}
\cmidrule(r){10-11}
Name & Name & Name & Name & Name. & Name & Name. & Name & Name. & Name & Name. \\
\midrule
John & Doe & $7.5$ \\
Richard & Miles & $2$ \\
\bottomrule
\end{tabular}
\label{case-studies}
\end{table}
\end{document}
The output is :

I want to label "Full" above other columns also. How to do that? And how to change the spacing between two columns?


Fullis centered above the first 8 columns. There are 11 columns all in all, so\multicolumn{11}{c}{Full}will centerFullabove all columns. The space between columns is adjusted with\tabcolsep. – Stephan Lehmke Oct 5 '12 at 4:56