Code: Select all
\renewcommand\chapterheadstartvskip{\vspace*{-5\baselineskip}}
Here is a MWE of the problem, consisting a master file and the preamble:
Master:
Code: Select all
\input{preamble}
\begin{document}
\selectlanguage{english}
\thispagestyle{empty}
\tableofcontents
\chapter{Introduction}
\textsl{Is this chapter, something very interesting is explained.}
\section{First section}
First section of Master's Thesis.
\bibliography{litteratur}
\addcontentsline{toc}{chapter}{Bibliography}
\end{document}
Code: Select all
\documentclass[a4paper,11pt,twoside,openright,fleqn]{report}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage{t1enc}
\usepackage{geometry}
\geometry{left=4cm,top=3cm,right=3cm,bottom=3cm}
\usepackage{psboxit}
\usepackage{fancyhdr}
\headheight=14pt
\fancyhf{}
\fancyhead[LE]{\leftmark}
\fancyhead[RO]{\rightmark}
\fancyfoot[RO,LE]{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{\thechapter\ #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancypagestyle{plain}{
\fancyhf{}
\fancyfoot[RO,LE]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.4pt}
}
\usepackage[times]{quotchap} % Chapter package
\usepackage[numbers,sort&compress]{natbib}
\bibliographystyle{chicago}