Googling around has not produced an answer to this, possibly because of the complexity of the question doesn't lend itself to easy googling. What I want to be able to do is control how white space appears in the output document. In the tex document, I might have two paragraphs as
Text in paragraph one.
Text in paragraph two.
And in the output they appear as two separate paragraphs, which is good. But in the tex document, it looks very jumbled and hard to read. However, if I attempt to make it a bit easier to read by doing
Text in paragraph one.
Text in paragraph two.
suddenly latex thinks I want extra space between the paragraphs and the output document has extra, unnecessary space. Is there a way I can include this extra space in the tex document for clarity and organization and not have it appear in the output? It gets really ugly when I have stuff that looks like
\documentclass[12pt, letterpaper]{letter}
\begin{document}
Paragraph one.
\begin{equation}
equation one
\end{equation}
\begin{equation}
equation two
\end{equation}
Paragraph two.
\end{document}
and I would much rather see
\documentclass[12pt, letterpaper]{letter}
\begin{document}
Paragraph one.
\begin{equation}
equation one
\end{equation}
\begin{equation}
equation two
\end{equation}
Paragraph two.
\end{document}



\documentclass{...}and ending with\end{document}. – Apr 26 '14 at 17:23equation. If you want, start it with%to better format. – Sigur Apr 26 '14 at 17:25equation, shouldn't be given directly following each other with no intervening text as the spacing will be odd. – Joseph Wright Apr 26 '14 at 17:32Paragraph two.after the equation in your second example is not a new paragraph (and will not have been indented by tex) as it is part of the same paragraph. To start a new paragraph after the equation you need a blank line. – David Carlisle Apr 26 '14 at 17:41