I am using empheq along with subequations as given in the MWE. However, the use of subequations create a vertical space between the paragraph and equation as shown in figure, which I don't want. I already tried answers available in [1,2]. Both the answers are not available to remove the space. Implementation of these answers provided in MWE 1 and 2, respectively.
MWE
\documentclass[a4paper,twoside,12pt]{report}
\usepackage{lipsum}
\usepackage[overload]{empheq}
\begin{document}
\lipsum
\begin{subequations}
\begin{empheq}[left={H=\empheqlbrace\,}]{align}
& 2 G_{0} - 2.6 \quad \forall \quad G_{0}~<~100~K \\
& 2 G_{0} - 9.8 \quad \forall \quad G_{0}~>~100~K
\end{empheq}
\label{eq:k_temperature_correlation}
\end{subequations}
\lipsum
\end{document}
MWE 1
\documentclass[a4paper,twoside,12pt]{report}
\usepackage{lipsum}
\usepackage[overload]{empheq}
\usepackage{etoolbox}
\preto\subequations{\ifhmode\unskip\fi}
\begin{document}
\lipsum
\begin{subequations}
\begin{empheq}[left={H=\empheqlbrace\,}]{align}
& 2 G_{0} - 2.6 \quad \forall \quad G_{0}~<~100~K \\
& 2 G_{0} - 9.8 \quad \forall \quad G_{0}~>~100~K
\end{empheq}
\label{eq:k_temperature_correlation}
\end{subequations}
\lipsum
\end{document}
MWE 2
\documentclass[a4paper,twoside,12pt]{report}
\usepackage{lipsum}
\usepackage[overload]{empheq}
\begin{document}
\begin{subequations}
\lipsum
\begin{empheq}[left={H=\empheqlbrace\,}]{align}
& 2 G_{0} - 2.6 \quad \forall \quad G_{0}~<~100~K \\
& 2 G_{0} - 9.8 \quad \forall \quad G_{0}~>~100~K
\end{empheq}
\label{eq:k_temperature_correlation}
\end{subequations}
\lipsum
\end{document}
How to remove vertical space between equation and paragraph when using combination of subequations and empheq?


subequationsandempheq(replaced it by thealignenvironment). The vertical space remains. It disappears after I drop theempheqpackage or remove theoverloadoption. Though it disappears foralignonly. Forempheqit strikes again. So I think the issue is in theempheqpackage and not insubequations. – Sergei Golovan Sep 21 '17 at 08:16\parof\lipsumis suppressed (\lipsum*). There's no rule about having to do like in MWE1. I'd say that to the contrary it is better to include insubequationsalso the paragraph parts before and after the equations/displays involved insubequations. – egreg Sep 21 '17 at 08:34