I am writing my doctoral thesis using the myreport.cls. The formatting requires double-spaced chapter titles. How can I achieve that? Here is the chapter definition used:
% this one creates the chapter heading and makes the chapter title to have number
% it is called by \chapter{...}
\def\@makechapterhead#1{%
\vspace*{10\p@}%
{\parindent \z@ \raggedright \normalfont
\ifnum \c@secnumdepth >\m@ne
{\centering \normalsize \MakeUppercase{\@chapapp} \space \thechapter % this uppercase command makes the word ``chapter'' be uppercase at the beginning of each chapter
\par \nobreak
\vskip 14\p@ % space between 'CHAPTER x' and the actual title
}
\fi
{\centering
\interlinepenalty\@M
\normalsize \MakeUppercase{#1} \par \nobreak
\vskip 8\p@ % space between CHAPTER TITLE and the material that starts immediately
}
}}
With the above definition, the chapter title looks like:
But I want it to look like:
Thanks in advance for the help.



titlesecpackage and thesetstretchcommand. – Kenneth Odle Nov 16 '23 at 00:09myreport.clsis not standard and we have no idea what's in it! – cfr Nov 16 '23 at 00:38