Im currently in the process of writing up my final year thesis and I've been trying to center a column heading over the space of 6 columns in a multicolumn table. For some reason, the part of the text "Binomial Method starts at the beginning of column 3, but wont center between the columns 3 and 8. Here is the code i've got so far, anyone have any ideas???
Code: Select all
\begin{table}[ht]
\caption{Black Scholes Vs Binomial values for European Call} % title of Table
\centering
\small
\begin{tabular}{l*{6}{c}r}
\hline\hline
\multicolumn{8}{c}{Binomial Method} \\
\cline{3-8}
T & Black Scholes & M=16 & M=32 & M=64 & M=128 & M=256 & M=512\\
\hline\hline
0.25 & 0.0875 & 0.0836 & 0.0879 & 0.0877 & 0.0869 & 0.0869 & 0.0875\\
0.50 & 0.3620 & 0.3652 & 0.3623 & 0.3646 & 0.3634 & 0.3618 & 0.3615\\
0.75 & 0.6808 & 0.6804 & 0.6908 & 0.6840 & 0.6825 & 0.6822 & 0.6815\\
1.00 & 1.0031 & 1.0356 & 1.0135 & 1.0069 & 1.0069 & 1.0049 & 1.0031\\
2.00 & 2.1907 & 2.2166 & 2.2271 & 2.2054 & 2.1971 & 2.1953 & 2.1930\\
\hline\hline
\end{tabular}
\label{Table 5 - Black Scholes Vs Binomial values European Call}
\end{table}