i have a problem with the the width of a table,this is the code:
\begin{table}
\centering
\begin{tabular}{|cl|c|c|}
\hline
& \emph{\textbf{OWL Syntaxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}}
& \emph{\textbf{DL syntax}}
& \emph{\textbf{Example}}\\
\hline
& Thing
& $\top$
& \\
\hline
\end{tabular}
\caption{Exemplary table}
\label{ft_tab_ex}
\end{table}
How can i do to split the word and start a new line??

\tabularxand aXcolumn for the first one – Nov 28 '15 at 21:45tabularxand you'll find a lot of examples – Nov 28 '15 at 21:51ctop{3cm}(or whatever width you need) then that may be enough or you might need explicit\newlinecommands to force line breaking if it is really a non-word likeaaaaaaaaaaaaaaaaathat tex can not break over a line – David Carlisle Nov 28 '15 at 21:59p{30mm}or whatever you prefer. – cfr Nov 29 '15 at 00:52