I'm growing tired of the extra space below \section and \subsection in the memoir class - it's way too big.
How can I remove it - like one use \vspace{-20pt}$. This must be done for all \section and \subsection.
What I have right now:
\documentclass[12]{memoir}
%\usepackage[danish]{babel}
\linespread{1.5}
\usepackage[bf, small, raggedright, compact]{titlesec}
\usepackage{lipsum}
\begin{document}
\chapter{Chapter title}
\section{Section heading} \lipsum[1]
\subsubsection{Subsection} \lipsum[1]
\end{document}
texdoc memoirsuggests\setafterSskip{ skip }is what you want withSbeingsecorsubsecandskipbeing whatever length you want. – David Carlisle Dec 04 '13 at 13:481sp, since anything non-negative makes it an inline section title.1spis very very small, but not equal to zero. – daleif Dec 04 '13 at 14:15\linespread{1}after each\sectionand\subsectionand back to 1.5 when the text starts.Should I do a redefine of the
– Rasmus Bækgaard Dec 04 '13 at 14:26\sectionor can I fix it in another way?titlesecplus\linespread{1.5} \setaftersecskip{1sp}seems fine by me in that there is no extra space below the\sectionit is the same as between lines of text. Remember thattitlesecoverwrites thememoirinterface. – daleif Dec 04 '13 at 14:46