Is there a way to reduce the vertical spacing between the chapter heading and the text separatedly from mainmatter and frontmatter?
Here is my custuom MWE:
\documentclass[14pt,twoside,a5paper,extrafontsizes]{memoir} %Classe estilo memoir
\usepackage[brazilian]{babel} %Traduz doc para português do Brasil
\usepackage[utf8]{inputenc} %Reconhece acentuação
\usepackage{indentfirst} %Define identação em todo primeiro parágrafo
\usepackage{garamondx} %Define a nova fonte garamond
\usepackage{lipsum}
\usepackage{tabularx}
\chapterstyle{thatcher}
\begin{document} %=========================================================================
\renewcommand{\printchaptername}{\centering{\chapnumfont\HUGE\thechapter}}
\renewcommand{\afterchapternum}{\par\bigbreak}
\frontmatter
\chapter{Introduction}
\lipsum[2]
\mainmatter
\chapter{Development}
\lipsum[2]
\end{document}

