複数列の行表示

複数列の行表示

次のコードで行のラインに奇妙な問題が発生しています:

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

これにより、次のヘッダーが表示されます。

ここに画像の説明を入力してください

最後の行「パフォーマンス」の行が不完全です。なぜそうなったかご存知ですか? この列を削除すれば問題はなくなりますが、なぜそうなるのかよくわかりません。

ありがとう !

答え1

&2 行目にもう 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}

ここに画像の説明を入力してください

関連情報