表格中未完成的垂直线

表格中未完成的垂直线

当我尝试new column在 中添加 时,垂直线没有完成table。相应的代码附在此处。如果有人尝试修改此代码并new column毫无问题地插入 ,将会很有帮助。因为我最初有许多这样的表,但现在我试图插入new columnoutput是。在此处输入图片描述

\begin{table}[!htb]
\begin{center}
\caption{Tablemy} 
\label{tab:tab5}
\begin{tabular}{|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
\hline
\multirow{3}{*}{Selection criteria} &  \multirow{3}{*}{Data} & \multicolumn{5}{c|}{MC } &\multirow{3}{*}{eff}  & new\\
\cline{3-7}
&& a & b & c & d &  e &\\
\hline
A  & 17 &0.52 & 0.78 & 0.41& 0.26 & 0&  7.55$\%$ & \\
B  & 14& 0.52 &0.78 &0.41 & 0.26&0 & 7.54$\%$ &\\
C  & 14 & 0.52 & 0.78 &0.41 & 0.26 & 0& 7.47$\%$ & \\

D & 6  & 0.52 & 0.78 &0.41 &0.26 & 0& 7.35$\%$ & \\

E &4 &0.52 &0.78 & 0.41 & 0.26 & 0&  7.35$\%$ & \\


\hline 

\end{tabular}
\end{center}
\end{table}

答案1

您不需要multirow这样的表格。

许多人会建议不要使用垂直线,而使用booktabs。这就是为什么我建议使用 版本booktabs

\documentclass{article}
\usepackage{booktabs}
\begin{document}

\begin{tabular}{*{9}{c}} 
\toprule
Selection & Data & \multicolumn{5}{c}{MC} & eff& new \\
\cline{3-7}
critera & & a & b & c & d & e & & \\ 
\midrule
A & 17 &0.52 & 0.78 & 0.41& 0.26 & 0& 7.55$\%$ & \\ 
B & 14& 0.52 &0.78 &0.41 & 0.26&0 & 7.54$\%$ &\\ 
C & 14 & 0.52 & 0.78 &0.41 & 0.26 & 0& 7.47$\%$ & \\
D & 6 & 0.52 & 0.78 &0.41 &0.26 & 0& 7.35$\%$ & \\
E &4 &0.52 &0.78 & 0.41 & 0.26 & 0& 7.35$\%$ & \\
\bottomrule
\end{tabular} 

\vspace{1cm}

\begin{tabular}{|*{10}{c|}} 
\hline
Selection & Data & \multicolumn{5}{c|}{MC} & eff& new \\
\cline{3-7}
critera & & a & b & c & d & e & & \\ 
\hline
A & 17 &0.52 & 0.78 & 0.41& 0.26 & 0& 7.55$\%$ & \\ 
B & 14& 0.52 &0.78 &0.41 & 0.26&0 & 7.54$\%$ &\\ 
C & 14 & 0.52 & 0.78 &0.41 & 0.26 & 0& 7.47$\%$ & \\
D & 6 & 0.52 & 0.78 &0.41 &0.26 & 0& 7.35$\%$ & \\
E &4 &0.52 &0.78 & 0.41 & 0.26 & 0& 7.35$\%$ & \\
\hline
\end{tabular} 

\end{document}

上述代码的结果

相关内容