What's the easiest way to have a line not indented and with a break before and after?
Example:
Following the list of ingredients:
- carrots
- ...
The Latex-Code would be:
Following the list of ingredients:
\begin{enumerate}
\item carrots
\item ...
\end{enumerate}
By default the line would be indented and without preceeding line break.
Any suggestions for a short-macro to have single lines?
I sometimes use
\ \\ Following the list of ingredients:


\noindentbeforeFollowing...solve your issue? – Peter Grill Oct 2 '11 at 20:40Following. So far I used\ \\ Followingbut don't know if this is a nice way/solution. – Sebastian Oct 2 '11 at 20:42