I simply want to align the decimal points in columns. I know this has been answered already but I can not figure out how to apply it in my table. Forgive me, I am very new to LaTeX. This is the code that I have:
\begin{table}[h]
\begin{center}
\begin{tabular}{ccc|cc|cc|c}
\hline\hline
\multirow{2}{*}{$A$} & \multirow{2}{*}{$B$} & \multirow{2}{*}{$C$} & \multicolumn{2}{c|}{1} & \multicolumn{2}{c|}{2} &
\multirow{2}{*}{$F$}\\\cline{4-7}
&&&$D$&$E$&$D$&$E$&\\\hline\hline
\multirow{3}{*}{2} & \multirow{3}{*}{5} & 12 & 2.146 & 9.144 & 6.311 & 9.566 & 7.134 \\ \cline{3-8}
&& 14 & 3.245 & 10.255 & 6.978 & 19.274 & 18.245 \\ \cline{3-8}
&& 16 & 7.176 & 11.968 & 10.852 & 47.485 & 25.282 \\ \hline\hline
\end{tabular}
\end{center}
\end{table}
One more thing. If my table was too long, and I wanted to cut it so that the other half is in the other page, is that possible? And if it is not too much to ask, can you show me how?