答案1
我借用了另一个 Stack Exchange 帖子中的讨论中的回复,并根据我对您问题的理解对其进行了修改。也许看看这个也会有所帮助:如何将章节标题在页面上向上移动?
但是这是根据您提供的信息得出的 MWE。我希望这就是您要找的。
\documentclass[12pt]{report}
\usepackage{fullpage}
\usepackage{blindtext}
\usepackage{titlesec}
\newcommand{\hsp}{\hspace{20pt}}
\titleformat{\chapter}[hang]{\Huge\bfseries}{\thechapter. }{0pt}{\Huge\bfseries}
\begin{document}
\chapter{Chapter 1}
\Blindtext
\appendix
\makeatletter
\renewcommand{\@makechapterhead}[1]{%
{\noindent\raggedright\normalfont% Alignment and font reset
\huge\bfseries \@chapapp\space\thechapter~~#1\par\nobreak}% Formatting
\vspace{\baselineskip}% ...just a little space
}
\makeatother
\chapter{Move Up}
\Blindtext
\end{document}