다음 코드를 사용하여 행 줄에 이상한 문제가 있습니다.
\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}