Latex 如何把附录标题放得更靠上

Latex 如何把附录标题放得更靠上

我正在使用乳胶课程报告。

因为我不想让章节的风格像 Lenny Sonny 那样沉重。我使用以下内容:

\usepackage{titlesec}
\newcommand{\hsp}{\hspace{20pt}}
\titleformat{\chapter}[hang]{\Huge\bfseries}{\thechapter. }{0pt}{\Huge\bfseries}

所以当我创建一个章节时,我非常高兴。但是,对于附录的章节,我不希望标题和页面顶部之间有这么大的空间[见图片]。因此,我的问题是:对于附录中每个章节的标题,如何将标题[仅附录的标题]放得更靠前?

在此处输入图片描述

答案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}

相关内容