如何在 latex 中添加章节描述

如何在 latex 中添加章节描述

我想添加章节描述,例如,

第1章

章节名称

以下是详细描述(大小和字体类型应与文档相同

我正在使用 Book 环境和此代码

\usepackage{titlesec}
\titleformat{\chapter}[display]
  {\textbf\sffamily\huge\bfseries}
  {\chaptertitlename\ \thechapter}{5pt}
  {\begin{flushleft}
  \normalfont\normalsize\itshape\ChapterDesc \vspace{0.25cm}
  \end{flushleft}
  \Huge}
\newcommand\ChapterDesc{}

我也尝试过这个解决方案托比约恩这是目前的情况

先感谢您 :)

答案1

使用类( 、和类memoir的超集)。bookreportarticle

\documentclass{memoir}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{First}
\chapterprecis{This is a precis of the first chapter.}
Lots of text
\end{document}

阅读文档(texdoc memoir)以了解如何\chapterprecis满足您的需求。

相关内容