使用 titlesec 包格式化章节标题

使用 titlesec 包格式化章节标题

我正在尝试做一个非常简单的任务,但我是 LaTeX 的初学者,所以我有一些疑问。

我想改变章节风格。而不是

第1章

介绍

我希望

第1章(粗体、居中、下划线且字母间有一个空格)

介绍。

有人可以帮我弄这个吗?

答案1

我不确定这是否是你想要的:

\documentclass{book}
\usepackage{titlesec}
\usepackage[tracking=true]{microtype}
\usepackage{lipsum}% juts to generate text for the example

\titleformat{\chapter}[display]
  {\normalfont\huge\bfseries}{\filcenter\underline{\MakeUppercase{\textls[400]{\chaptertitlename}}\ \thechapter}}{20pt}{\Huge}

\begin{document}

\chapter{Introduction}
\lipsum[4]

\end{document}

在此处输入图片描述

请注意,带下划线的粗体文本可能是一个糟糕的设计选择。

相关内容