自定义您自己的章节样式

自定义您自己的章节样式

我希望个性化我自己的章节风格,如照片所示。

尽管有几篇关于这个主题的文章,但我还是无法完全理解它的工作原理以及需要做什么才能实现以下结果。我的文档是一份报告。在此处输入图片描述

答案1

使用可配置类来实现这一点相当简单,比如KOMA 脚本scrreprt,这是另一个报告类,或者scrbook,这是另一个书籍类:

\documentclass[chapterprefix]{scrreprt}% or scrbook
\usepackage{libertinus}% use any scalable font you want

\setkomafont{chapter}{\normalfont\huge}% Font of the chapter title
\setkomafont{chapterprefix}{\normalfont\fontsize{48}{48}\selectfont}% Font of the chapter number
\renewcommand*{\chapterformat}{\thechapter}% Use just the chapter number without any prefix in the number line
\let\raggedchapter\centering% horizontal centering of chapter headings

\usepackage{lipsum}\setcounter{chapter}{2}% Only for demonstration

\begin{document}
\chapter{Methodology}
\lipsum[1]
\end{document}

在此处输入图片描述

提供了更多配置选项,例如,修改数字上方、数字下方和标题下方的空格。请参阅KOMA 脚本手册以了解更多信息。

memoir类似的事情也可以通过类或包来实现sectsty或者titlesec。请参阅手册了解更多信息,并提出问题最小工作示例如果您在执行请求时遇到问题。

相关内容