I had gone thro this question and still in my case, i have the overlapping text in the table
Here is my MWE
\documentclass[a4paper,10pt]{book}
\usepackage{pdflscape} % to change certain pages to landscape mode
\usepackage{longtable} % for tables spanning multiple pages
\begin{document}
This is my example
\begin{landscape}
\begin{tabular}{|p{5cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|}
\hline
ABCD EFGH ABCD EFGH ABCD EFGH ABCD EFGH ABCD EFGH & H & H & H & H & OCH2-CH=C(CH3)CH2CH2CH=C(CH3)2 & H \tabularnewline
\hline
\end{tabular}
\newline
\end{landscape}
\end{document}
I can not expand / compress the column size.
The question is how to fix the overflowing text in 6th column. Whereas column 1 fits properly.
Should i manually hyphenate the text to fit into the desired cell width?

