多列行线显示

多列行线显示

我在一行上遇到了一个奇怪的问题,代码如下:

\begin{adjustbox}{width=1\textwidth}
\small
\begin{tabular}{| l |*{3}{c |} l | l |}
\hline
\multicolumn{1}{| c |}{\textbf{Title}}  & \multicolumn{3}{| c |}{\textbf{Model}} & \multicolumn{1}{| c |}{\textbf{Techniques}} &  \multicolumn{1}{| c |}{\textbf{Performances}} \\  \cline{2-4}
 & \textbf{Battery} & \textbf{EV} & \textbf{Grid} &  \\  \hline

\end{tabular}
\end{adjustbox}

这给了我以下标题:

在此处输入图片描述

最后一行“Performances”的行不完整。你知道为什么会这样吗?如果我删除此列,问题就解决了,我真的不明白为什么会发生这种情况。

谢谢 !

答案1

&第二行还需要另一个。

我还稍微\setlength\extrarowheight{2pt}增加了行高。

\documentclass{article}
\usepackage{adjustbox}
\usepackage{array}
\setlength\extrarowheight{2pt}

\begin{document}
\begin{adjustbox}{width=\textwidth}
    \small
    \begin{tabular}{|l|*{3}{c|}l|l|}
        \hline
        \multicolumn{1}{|c|}{\textbf{Title}} & \multicolumn{3}{c|}{\textbf{Model}} & \multicolumn{1}{c|}{\textbf{Techniques}} & \multicolumn{1}{c|}{\textbf{Performances}} \\ 
        \cline{2-4}
        & \textbf{Battery} & \textbf{EV} & \textbf{Grid} & & \\  
        \hline
    \end{tabular}
\end{adjustbox}
\end{document}

在此处输入图片描述

相关内容