So I wanted to customise my chapter style and remove the space before it. I've already used \titlespacing from titlesec package, but there still is space before the title.
mycls.cls:
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{mycls}[2015/11/18 My class]
\LoadClass{book}
\RequirePackage[showframe]{geometry}
\RequirePackage{titlesec}
\titleformat{\chapter}[display]
{\center}
{\thechapter}
{0.1875in}
{}
\titlespacing*{\chapter}
{0in}
{0in}
{0.4375in}
example.tex:
\documentclass{mycls}
\usepackage{lipsum}
\title{Tex StackExchange Example}
\author{Pedro}
\begin{document}
\maketitle
\chapter{Chapter}
\lipsum[1]
\lipsum[2]
\end{document}
Generated document with space between the top of the frame and the chapter number:
Any hint on what I'm not doing right/what I should be doing?
