答案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
。请参阅手册了解更多信息,并提出问题最小工作示例如果您在执行请求时遇到问题。