In this minimal working example:
\documentclass{article}
\begin{document}
\begin{description}
\item [{a)}] \begin{flushleft} test1 test1 test1 test1
test2 test2 test2 test2
\[
x^2+x+1=0
\]
%
\noindent test3 test3 test3 test3
\par\end{flushleft}
\item [{b)}] test4 test4 test4 test4
test5 test5 test5 test5
\end{description}
\end{document}
I don't want the
test3 test3 test3 test3
line, after the equation indented. But neither using \noindent nor the trick with the "%" from this question worked. Do you have any ideas how I could stop the indentation? (It is preferable, to keep everything inside the
\begin{description}..
block and not to use a different command - or if I have to use a different command, than I would like to use one that allows me to put the "a)" and "b)" at the beginning of each line and handles spacing, like the \begin{description} automatically.)


descriptionenvironment, where all lines after the first are indented. – egreg Mar 18 '12 at 12:06description. Do you want thetext3...to be flush with the left margin of the text block, or flush left with thedescriptionitem label? – Werner Mar 18 '12 at 12:06