[Tex/LaTex] Table without caption seems weird

captionstables

I would like to create a table without caption but it seems not so good. I mean that there is a long line at the end of the table and it disturbs the reader.

Try:

\begin{table}[h]
\refstepcounter{table}\label{CDS5}
\begin{tabular}{l*{4}{c}r}

            & WAF5-H & WAF5-S & WAF4-H \\
\hline
$M{_1}$' = :87 +... + :51       & 0 & 3 & 6 \\
$M{_2}$' = :C5 +... + :E5     & 1 & 1 & 9 \\
\end{tabular}
\end{table}

EDIT:

I use packages related with table tabular, tabularx, multirow.
The screenshot is :
enter image description here

Could you please help me to solve this.
Regards,

Best Answer

Put it only in a center environment

\begin{center}
\begin{tabular}{l*{4}{c}r}
            & WAF5-H & WAF5-S & WAF4-H \\\hline
$M{_1}$' = :87 +... + :51       & 0 & 3 & 6 \\
$M{_2}$' = :C5 +... + :E5     & 1 & 1 & 9 \\
\end{tabular}
\end{center}
Related Question