多列行線顯示

多列行線顯示

我在一行上遇到一個奇怪的問題,程式碼如下:

\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}

在此輸入影像描述

相關內容