I am trying to place some text between two subequations. The intertext command works as long as the text consists of a single paragraph. When I add a new paragraph I get an error in alignment. Specifically, I want no indentation for the first paragraph and a normal indentation for the second one. I tried every possible way I could think of without any result. Here's my last try (doesn't work either-2nd paragraph doesn't indent):
\documentclass[12pt,a4paper]{article}
\usepackage{amsmath,amssymb,amsfonts}
\begin{document}
\begin{align*}
y&=mx+b \\
x&=\dfrac{y-b}{m} \\
\intertext{To find the slope use this:}
m&=\dfrac{y_2-y_1}{x_2-x_1} \\
\intertext{\indent Math is really fun and I enjoy it but I hate this equation}
x&=\dfrac{-b\pm\sqrt{b^2-4ac}}{2a} \\
\end{align*}
\end{document}
you can use a \parbox and emulate a new paragraph by using a line-changing command \\ together with a \hspace* with proper value (this value, of couse, will be given by \parindent as defined in your document class; to find out this value, you can use \the\parindent). Take a look at the following example:
\documentclass{book}
\usepackage{amsmath,amssymb,amsfonts}
\begin{document}
\the\parindent% to get the value of indentation of the first line of a paragraph
\begin{align*}
y &= mx+b \\
x &= \dfrac{y-b}{m} \\
\intertext{\parbox{\linewidth}{First paragraph\\
\hspace*{15pt}Second paragraph}}
m &= \dfrac{y_2-y_1}{x_2-x_1}
\end{align*}
\end{document}