I want to reduce the space between text and a multiline equation following it. I am using the setspace package and I need doublespacing for the text. It seems that with the \doublespacing command, the \vspace{-2ex} or so does not work. The following is a minimum working example.
Thanks for your help.
Code: Select all
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{mdwlist}
\usepackage{natbib}
\usepackage{showkeys} %To see labels (of equations, proof and lemma numbers) when working on a draft.
\usepackage{paralist}% Package that allows different types of lists such as in paragraph lists.
\usepackage{pdfsync}
\usepackage{setspace}
\usepackage[margin=1in,left=1.2in]{geometry}
\usepackage[T1]{fontenc}
\usepackage[charter]{mathdesign}
\def\sm{\scriptscriptstyle}
\usepackage{tikz}
\begin{document}
\doublespacing
We need to decrease the space between this line and the one below. With the doublespacing in the text it seems the vspace command is ineffective.
\begin{multline}
\Pr(\text{D appeal|D loss}) = \\ \frac{ r t_{10} F_{\sm D}(EG_{\sm D}^{\sm 0} + (a_{00} - a_{01}) \delta_{0} (\Delta H) ) + (1-r) t_{11} F_{\sm D}(EG_{\sm D}^{\sm 1} + (a_{00} - a_{01}) \delta_{1} (\Delta H)) }{ r t_{10} + (1-r) t_{11} }
\end{multline}
This is the text following the equation. The space here is okay. It is the one before the equation that I want to reduce.
\end{document}