I have a little problem with my chapters. I found the chapterstyle below on this site. The problem is the rather high vertical space above the title. I've experimented with the -60pt and 2.5cm below, but I couldn't move it up. I also tried the titlesec package, but that didn't seem to have any effect. What do I have to do to move the chaptertitle to the top of the page?
An example of what I mean: (note: this is compiled with XeLaTeX, for LaTeX you might have to delete the fontspec and x* packages)
Code: Select all
\documentclass[11pt,a4paper,openany]{memoir}
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage{xltxtra}
\usepackage[usenames,dvipsnames]{color}
\makechapterstyle{combined}{
\setlength{\midchapskip}{-60pt}
\setlength{\afterchapskip}{2.5cm}
\renewcommand*{\printchaptername}{}
\renewcommand*{\chapnumfont}{\normalfont\sffamily\bfseries\fontsize{80}{0}\selectfont}
\renewcommand*{\printchapternum}{\flushright\chapnumfont\textcolor[rgb]{.64,.79,.87}{\thechapter}}
\renewcommand*{\chaptitlefont}{\normalfont\sffamily\Huge\bfseries}
\renewcommand*{\printchaptertitle}[1]{%
\raggedright\chaptitlefont\parbox[t]{\textwidth-3cm}{\raggedright##1}}
}
\chapterstyle{combined}
\begin{document}
\chapter{This}
Should be a bit higher
\end{document}