I have a table containing a few lines that don't extend all the way to the end. These lines being end up being stretched beyond presentability. I've tried several methods looked up here and none seem to work. The only thing that does is putting it in Math mode, which is not what I want for the table I am working with.
The line
not(dep(adjective, dep)), (dep(adjective, nmod)
ends up looking like
not(dep(adjective, dep)), (dep(adjective, nmod)
in order to fit the space in the Table
My MWE
\documentclass[11pt]{article}
\begin{document}
\begin{table*}[t]
\small
\caption{\small \label{table-4} \textit{Table}}
\begin{tabular}{|p{13.5cm}|}
\hline
not(dep(adjective, dep)), (dep(adjective, nmod)
not(pos(parent(adjective), RB)), not(dep(children(adjective), nsubj))) facet(States);
\\
\hline
\end{tabular}
\end{table*}
\end{document}


