I'm trying to get two multirows separated by several columns, but it wants to add an extra row in the table. My code is:
\documentclass[]{article}
\usepackage{multirow,booktabs}
\begin{document}
\begin{table}[!htbp]
\begin{center}
\caption{Stuff.}
\begin{tabular}{cc|ccc|cc|ccc}
\toprule
\multicolumn{5}{c|}{Single Smoothing (SS)}&\multicolumn{5}{c}{Double Smoothing (DS)}\\
\midrule
Measure & Method & $h=1$ & $h=6$ & $h=12$ & Measure & Method & $h=1$ & $h=6$ & $h=12$ \\
\midrule
\multirow{4}{*}{sME} &&&&& \multirow{4}{*}{sME} \\
& SS & -0.312 & -8.605 & -3.342 & & DS & -0.315 & -0.175 & -0.238 \\
& Mean & -0.664 & 0.462 & -0.543 & & Mean & -0.484 & -0.290 & -0.308 \\
& Naive & 0.064 & -0.433 & -0.589 & & Naive & -1.364 & -0.786 & 0.108 \\
& Autobox & -0.578 & -1.947 & -0.702 & & Autobox & -1.784 & -0.201 & -0.294\\
\bottomrule
\end{tabular}
\end{center}
\end{table}
\end{document}
The out put looks like this, but I don't want the extra row.




siunitx! – Oleg Lobachev Jun 30 '18 at 23:55