章节描述

章节描述

我现在想知道如何在章节之后添加文本。

例如:(现在的情况)

第1章

介绍

[此处输入文字]

我想在章节和介绍之间添加章节描述。

第1章

[以下为章节描述]

介绍

[更多文字]

编辑documentclass包括以下内容:

%% Send any unknown option to the report class
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{report}}

\ProcessOptions\relax

\ifgfivepaper
  \LoadClass[10pt]{report}
\else
  \LoadClass[12pt]{report}
\fi

\RequirePackage[utf8]{inputenc}
\RequirePackage[english]{babel}
\RequirePackage{titlesec}
\titleformat{\chapter}[display]
  {\normalfont\sffamily\huge\bfseries} 
  {\chaptertitlename\ \thechapter}{20pt}{\Huge}

更新:下图是我想要生成的

在此处输入图片描述

目前情况就是这样的 在此处输入图片描述

谢谢。

答案1

通过在每章之前添加以下内容来解决这个问题

{
\titleformat{\chapter}[display]
  {\normalfont\sffamily\huge\bfseries}
  {\chaptertitlename\ \thechapter}{5pt}
  {\begin{flushleft}
  \normalfont\normalsize\textit{Here is the place where the description of each chapter goes. \vspace{0.25cm}}
  \end{flushleft}
  \Huge}
\chapter{Introduction}
}

相关内容