Below is my MWE. I noticed that the top margin of the first page of every chapter is bigger than what I have set. It is 3cm and not 2cm which is what I want. What did I do wrong?
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage{lipsum}
\usepackage[a4paper,lmargin=4.0cm,rmargin=2.0cm,tmargin=2.0cm,bmargin=2.0cm]{geometry}
\usepackage{titlesec}
\renewcommand{\chaptername}{CHAPTER}
\titleformat{\chapter}[hang]
{\normalfont\normalsize\bfseries\centering}{\chaptertitlename\ \thechapter:}{2mm}{\normalsize\uppercase}
\titlespacing{\chapter}{0pt}{0pt}{\baselineskip}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyfoot[R]{\footnotesize\thepage}
\fancypagestyle{plain}{\fancyhf{}\fancyfoot[R]{\footnotesize\thepage}}
\begin{document}
\chapter{Introduction}
\lipsum[1-10]
\chapter{Methodology}
\lipsum[11-20]
\end{document}
Mimi