I would like to align equations from two different lines.
\documentclass[12pt]{article}
\begin{document}
$$ a = b +1 = c +2 = d +3$$
The quick brown fox jumps over the lazy dogs.
$$ a = b$$
\end{document}
This sample document centers the equations separately. I would like to have the math-mode symbols a = b to align vertically.


alignoralign*environment then, for example? ;-) See also http://tex.stackexchange.com/questions/503/why-is-preferable-to?s=1|1.6833 please – Aug 05 '15 at 21:20\intertext{...}or\shortintertext{...}. – sodd Aug 05 '15 at 21:22\begin{align*} a &= b +1 = c +2 = d +3\\ \intertext{The quick brown fox jumps over the lazy dogs.} a &= b \end{align*}– AboAmmar Aug 05 '15 at 21:41$$in LaTeX, see Why is\[ … \]preferable to$$? – egreg Aug 05 '15 at 21:59