Myriam Abramson schrieb:

I have a multi book class document. How do I the vertical space of the
Chapter titles? I set my page layout to 1.25 and my Chapter titles
have to start 2 inches from the top.
try in preamble:

\setlength{\topspace}{2in%   <---- the whole vertical space
    -\topmargin%    <--- predefined
    -\headheight%          ...
    -\headsep%             ...
    -\topskip}             ...
\def\@makechapterhead#1{%
 \vspace*{\topspace}% <---- the space above
 {\parindent \z@ \raggedright \normalfont
   \ifnum \c@secnumdepth >\m@ne
     \if@mainmatter
       \huge\bfseries \@chapapp\space \thechapter
       \par\nobreak
       \vskip 20\p@% <--- the space between Chapter # - title
     \fi
   \fi
   \interlinepenalty\@M
   \Huge \bfseries #1\par\nobreak
   \vskip 40\p@% <---- the space below
 }}


Herbert

Reply via email to