答案1
不完全确定您正在寻找什么,但您没有显示您已尝试过的内容或您的文档类。
% chaptitleprob.tex SE 603312
\documentclass{memoir}
\usepackage{lipsum}
%%%%% changes to chapter titles
\setlength{\beforechapskip}{-2\baselineskip} % reduce space above
\setlength{\afterchapskip}{1\baselineskip} % reduce space below
\renewcommand{\printchaptername}{} % don't print Chapter
\renewcommand{\chapnumfont}{\scshape\Huge} % font for the number
\renewcommand{\chaptitlefont}{\scshape\Huge} % font for the title
\renewcommand{\afterchapternum}{\hspace{1em}} % space between number and title
\begin{document}
\chapter{First Chapter}
\lipsum[1-5]
\end{document}
我让您指定要使用的字体以及数字和标题文本周围所需的阴影。