[Tex/LaTex] Making the font size larger than \HUGE in chapter headings with memoir

chaptersfontsizememoir

How would one go about this? Below my MWE. I should note that \HUGE appears no different from \Huge, but I decided to use it anyway as it should be the largest option.

\documentclass[12pt]{memoir}
\input{preface}

\usepackage{egothic}%

\makeatletter
\makechapterstyle{ene}{%
  \renewcommand*{\chapnumfont}{\chapnamefont}%
\renewcommand*{\chaptitlefont}{\hfill\egothfamily\HUGE}%
}
\chapterstyle{ene}

\begin{document}

\chapter*{1}
This is the first chapter.
\end{document}

Best Answer

You're free to create a new macro called, say, \YUGE (sorry, I couldn't resist!), as

\newcommand\YUGE{\fontsize{48}{60}\selectfont}

or, if you want to go overboard completely, as

\newcommand\YUGE{\fontsize{100}{120}\selectfont}

and then use \YUGE inside the definition of \chaptitlefont.

Related Question