表格修改

表格修改

我构建了一张需要进行一些修改的表格。

错误

在第六列中,我想将列(3、4、5、7、8、9)中的三个值作为其他列。我使用的代码如下。

   \begin{document}
        \begin{tabular}{|c|c|c|c|c|c|c|c|c|}
            \hline
            &  &  \multicolumn{7}{c|}{Days of a week}\\
            \hline
            Model & Errors & M & T & W & T & F & S & S\\
            \hline
            FAR & \multirow{3}{*}{MAE} & 4.29 & 8.79 & 6.06 & \multirow{3}{*}{13} & 5.08 & 12.24 & 7.10\\
            AR & & 4.53 & 9.18 & 6.15 & & 5.50 & 12.35 & 7.19\\
            Naive & & 4.10 & 8.82 & 5.86 & & 4.59 & 10.48 & 6.25\\
            \hline
            FAR & \multirow{3}{*}{MAPE} & 4.21 & 9.81 & 5.64 & \multirow{3}{*}{14} & 5.68 & 13.38 & 7.76\\
            AR & & 4.53 & 9.18 & 6.15 & & 5.50 & 12.35 & 7.19\\
            Naive & & 3.98 & 9.95 & 5.76 & & 5.32 & 13.11 & 7.02\\
            \hline
            FAR & \multirow{3}{*}{RMSE} & 4.21 & 9.81 & 5.64 & \multirow{3}{*}{15} & 5.68 & 13.38 & 7.76\\
            AR & & 4.53 & 9.18 & 6.15 & & 5.50 & 12.35 & 7.19\\
            Naive & & 3.98 & 9.95 & 5.76 & & 5.32 & 13.11 & 7.02\\
            \hline
        \end{tabular}
   \end{document} 

请按要求整改。第二,前两个子栏目模型及以上空子列和类似子列错误

答案1

欢迎来到 TeX.SX!

我不太清楚您想要实现什么,但如果您不想让单元格跨越第六列的三行,则只需删除\multirow那里的命令,正如评论中已经建议的那样。我认为,最好通过一个例子来展示一下这样做的含义:

\documentclass{article}
\usepackage{multirow}

\begin{document}
    \begin{tabular}{|c|c|c|c|c|c|c|c|c|}
        \hline
        &  &  \multicolumn{7}{c|}{Days of a week}\\
        \hline
        Model & Errors & M & T & W & T & F & S & S\\
        \hline
        FAR & \multirow{3}{*}{MAE} & 4.29 & 8.79 & 6.06 & 13 & 5.08 & 12.24 & 7.10\\
        AR & & 4.53 & 9.18 & 6.15 & 13 & 5.50 & 12.35 & 7.19\\
        Naive & & 4.10 & 8.82 & 5.86 & 13 & 4.59 & 10.48 & 6.25\\
        \hline
        FAR & \multirow{3}{*}{MAPE} & 4.21 & 9.81 & 5.64 & 14 & 5.68 & 13.38 & 7.76\\
        AR & & 4.53 & 9.18 & 6.15 & 14 & 5.50 & 12.35 & 7.19\\
        Naive & & 3.98 & 9.95 & 5.76 & 14 & 5.32 & 13.11 & 7.02\\
        \hline
        FAR & \multirow{3}{*}{RMSE} & 4.21 & 9.81 & 5.64 & 15 & 5.68 & 13.38 & 7.76\\
        AR & & 4.53 & 9.18 & 6.15 & 15 & 5.50 & 12.35 & 7.19\\
        Naive & & 3.98 & 9.95 & 5.76 & 15 & 5.32 & 13.11 & 7.02\\
        \hline
    \end{tabular}
\end{document} 

在此处输入图片描述

这是你想要实现的吗?如果不是,请详细说明。

相关内容