A minimal example is below. I've tried renewing the chaptitlefont to
include singlespacing, but that leaves a large gap between the first
hrule and the chapter title. I've struggled with renewing the other
commands (such as \printchaptertitle) but haven't had any luck.
I assume that I'm missing something simple? Thank you in advance for
any help!
%-----------------------------------
\documentclass{memoir}
\DisemulatePackage{setspace}
\usepackage{setspace}
\begin{document}
\doublespacing
\chapterstyle{demo}
\renewcommand{\chaptitlefont}{\normalfont\Huge\sffamily\singlespacing}
\chapter{Initial Chapter That Has a Really, Really Long Title}
I just want to make sure this is double-spaced correctly. I just want
to make sure this is double-spaced correctly. I just want to make
sure this is double-spaced correctly. I just want to make sure this
is double-spaced correctly. I just want to make sure this is double-
spaced correctly. I just want to make sure this is double-spaced
correctly.
\end{document}
Replace your \renewcomand{\chaptitlefont}{...} with
\renewcommand{\chaptitlefont}{\removelastskip\vskip-\onelineskip
\normalfont\Huge\sffamily\singlespacing}
I just read through the memoir.cls documentclass and found the
definition of the demo chapter heading style. There I found the
relavent skip lengths and 'subtracted' them.
Werner
JT