Super noob here, so please forgive any blunders! :)
My problem is that in my document (example below), the paragraph starting from the second dingbat is getting indented automatically. I don't want this; I want all the left edges aligned perfectly. How can this be done?
\documentclass{article}
\usepackage{amsmath}
\usepackage{pifont} %For the very nice dingbats
\begin{document}
\section*{Elementary Algebra}
\ding{234} One amusing way to look at \textbf{irrational numbers} is to say that they don't behave rationally. The point is, given their non-terminating, non-repeating decimals, there's no `sane' way to work with them!
\ding{234} Here are some elementary but easily forgotten (and highly useful) algebraic identities:
\begin{itemize}
\item $a^3 - b^3 = (a-b)(a^2+ab+b^2)$
\end{itemize}
\end{document}

leftindent…? – Bernard Mar 11 '14 at 17:30\usepackage{parskip}does what you want? – vaettchen Mar 11 '14 at 17:32\paragraph{\ding{234}}in those two (and many more) cases. If none of them fits you, it's possible that you are really looking to the\usepackage{parskip}, as they already said. – Manuel Mar 11 '14 at 17:56