[Tex/LaTex] Height chapter number or height chapter name in memoir

chaptersmemoirsectioningspacing

I use memoir class. I want add some vertical space before chapter name or chapter number. I got that with \beforechapskip command, but this way add a fixed vertical space for all chapters. There are any \command that control height of chapter number or height of chapter name, so I can add vertical space dinamically from this \command?

Best Answer

If I understand you correctly, you like to change vertical space before of only one chapter head. This you can obtain width:

\documentclass[openany]{memoir}
\usepackage{lipsum}
 \setlength\beforechapskip{9\baselineskip}
   \begin{document}
\chapter{one}
\lipsum[1-2]

\setlength\beforechapskip{0\baselineskip}
\chapter{two}
\setlength\beforechapskip{9\baselineskip}
\lipsum[3-4]

\chapter{three}
\lipsum[5-6]
    \end{document}
Related Question