多表水平对齐

多表水平对齐

我正在尝试将多个表格放在一起。(向下滚动查看 MWE)。我不明白为什么最后一张表格没有对齐。我尝试了解决方案这里但它对我不起作用,因为我没有使用tabulary包裹。

我获得的 PDF 输出: 我得到的 PDF 输出

所需的 PDF 输出: 所需 PDF 输出

分数维:

\documentclass[conference]{IEEEtran}
\usepackage[cmex10]{amsmath}
\usepackage{amssymb}
\usepackage{array}
\usepackage[caption=false,font=footnotesize]{subfig}

\usepackage{eqparbox}
\interdisplaylinepenalty=2500
\usepackage{algorithmic}


\newcolumntype{R}{>{$}r<{$}}
\newcolumntype{L}{>{$}r<{$}}
\newcolumntype{M}{R@{${}={}$}L}

\begin{document}

\begin{table}[h]
    \centering
    \setlength{\extrarowheight}{2pt}{
        \begin{tabular}{M|c}
        \multicolumn{3}{c}{}\\\hline
        \multicolumn{2}{c|}{Rules (Continuous Case)}      & \multicolumn{1}{c}{$\mbox{cv}_{w}$}      \\\hline
        V^{1.000}x_{2}^{-1.000} & 4.459     & 0.24                            \\
        S^{1.000}x_{2}^{0.999} & 89.971      & 0.26                            \\
        x_{1}^{1.000}x_{2}^{-1.000} & 0.500  & 0.54                             \\
        y^{1.000} & 2.001                    & 0.85                \\ \hline      
        \end{tabular}\hfill
        %
        \begin{tabular}{M|c}
        \multicolumn{3}{c}{}\\\hline
        \multicolumn{2}{c|}{Rules (Continuous Case)}      & \multicolumn{1}{c}{$\mbox{cv}_{w}$}      \\\hline
        V^{1.000}x_{2}^{-1.000} & 4.459     & 0.24                            \\
        S^{1.000}x_{2}^{0.999} & 89.971      & 0.26                            \\
        x_{1}^{1.000}x_{2}^{-1.000} & 0.500  & 0.54                             \\
        y^{1.000} & 2.001                     & 0.85           \\\hline               
        \end{tabular}\hfill
        %
        \begin{tabular}{M|c}
        \multicolumn{2}{c|}{Rules (Continuous Case)}      & \multicolumn{1}{c}{$\mbox{cv}_{w}$}      \\\hline
        V^{1.000}x_{2}^{-1.000} & 4.459     & 0.24                            \\
        S^{1.000}x_{2}^{0.999} & 89.971      & 0.26                            \\
        x_{1}^{1.000}x_{2}^{-1.000} & 0.500  & 0.54                             \\
        y^{1.000} & 2.001                     & 0.85           \\\hline               
        \end{tabular}\hfill
        %
        \begin{tabular}{M|c}
        \multicolumn{2}{c|}{Rules (Continuous Case)}      & \multicolumn{1}{c}{$\mbox{cv}_{w}$}      \\\hline
        V^{1.000}x_{2}^{-1.000} & 4.459     & 0.24                            \\
        S^{1.000}x_{2}^{0.999} & 89.971      & 0.26                            \\
        x_{1}^{1.000}x_{2}^{-1.000} & 0.500  & 0.54                             \\
        y^{1.000} & 2.001                     & 0.85                \\\hline          
        \end{tabular}
    }
\end{table}

\end{document}

相关内容