表形式で複数行内の行を分割する方法がわかりません。2行の高さのセルが1つあり、その中に長いテキストがある表を作成する必要がありますが、行が途切れず、テキストが左側の別のセルと重なっています。
助言がありますか?
コードのサンプル:
\begin{center}
\begin{tabular}{|p{1cm}|p{2.5cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|}
\hline
\multirow{2}{*}{Long text to break} % HERE IS A PROBLEM
& Thing & \multicolumn{2}{|c|}{Thing 2} & \multicolumn{2}{|c|}{Thing 3}
\\ \cline{2-6}
& sth 1 & sth 1 & sth 2 & sth 1 & sth 2 \\ \hline
\hline
\end{tabular}
\end{center}