I have a figure with a long list of predicates connected with \wedge, here is the code:
\begin{figure}[h]
\small{
$
Defined\_in(subject\_state, concrete\_subject) \wedge Defined\_in (observer\_state, concrete\_observer) \wedge
Defined\_in(attach, subject) \wedge Defined\_in(detach, subject) \wedge Defined\_in(notify, subject) \wedge ... it continues ...
$
}
\caption{Caption text}
\label{fig:myfig}
\end{figure}
the problem is that the output produced by pdflatex is rather ugly:

what I would like is to align it all to left, which I think will look better. If I use \[ and \] instead of $, latex places all the content on one line which overlaps from the page. I would like to avoid manual inserting of new lines with \\, and rather let latex to break it up into lines and align it to left.
