Hi,
if you would like to turn that
align*
equation into a flushed left equation, which is aligned to the left of the outside text, but within the
itemize
environment, you could use
flalign*
Code: Select all
\begin{itemize}
\item text
\begin{itemize}
\item text
\begin{flalign*}
y = f(x)&&
\end{flalign*}
\end{itemize}
\end{itemize}
The
&&
push the first part before to the left.
However, if you would like to make it flushed left to the left margin of the base body text, simply end the
itemize
environment(s), write the equation, and start again
itemize
if it should continue. This way is also consistent in its meaning.
Btw. here and in general it would be much better if you write a real formula and perhaps even some normal text, not just "bla". So we could better understand what's desired and what would be the best way. I guess
align*
or
flalign*
won't be the best match, actually.
Stefan