I'm working with a style in two columns. I would like to put a table fitting in one column as did in https://tex.stackexchange.com/questions/180543/creating-a-table-fitting-one-column-of-a-two-column-style-page.
However, if I use big strings as "large large large large large large" inside a \rotatebox, I have the error:
pdfTeX error (ext4): \pdfendlink ended up in different nesting level than \pdfstartlink. \end{document}
\begin{table}
\caption{Summary of the characteristics used in some related works.}
\label{tableRelatedWorks2}
\resizebox{\columnwidth}{!}{%
\begin{tabular}{ccccccc}
\rotatebox[origin=c]{90}{\text{large large large large large large} } & \text{KLSRf} & \text{MLDFSP} & \text{PNDND} & \text{LDFSSVM} & \rotatebox[origin=c]{90}{a} & \rotatebox[origin=c]{90}{b}\\
\hline
\end{tabular}
}
\end{table}
If I put a string with 5 characters instead of "large large large large large large" in the code above, it works.
Someone could say what's wrong?
