I prefer to write documents with paragraph spacing rather than indents to distinguish different paragraphs, but my problem is that if a paragraph ends in display maths then this leaves a double spacing (since I also have display maths set with 1em above and below)is there a way of avoiding this annoying double spacing?
\documentclass[a4paper, 12pt]{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{bm}
\setlength{\parskip}{1em}
\begin{document}
\setlength{\abovedisplayskip}{1em}
\setlength{\belowdisplayskip}{1em}
\setlength{\jot}{0.5em}
\section{Section 1}
When I have text like this bit here, shortly followed by an equation such as
$$E = mc^2$$
\section{Section 2}
And a new section is started afterward, there is a double spacing between the end of the Maths and the start of section 2.
\end{document}
\[...\]delimiters for unnumbered math, rather than$$...$$– Steven B. Segletes May 30 '17 at 14:39\parskipdirectly. Don't do it. Instead, load the parskip package first, and then (if you must) modify the\parskiplength parameter. Whatever you do, don't make\parskipa rigid length; do give it some stretchability (in the TeX-related sense of the word). – Mico May 30 '17 at 14:47\parskipa low-level parameter. Just sayin'. However, the OP needs to understand that that\parskipgets wrapped up in the spacing before section headers. – Steven B. Segletes May 30 '17 at 14:50parskippackage for why it can be tricky to set\parskipnaively (to a nonzero length, that is). – Mico May 30 '17 at 15:16\parskipcan wreak havoc on the appearance of lists. – Mico May 30 '17 at 16:14