Debian GNU/Linux 上的 TeXLive

Debian GNU/Linux 上的 TeXLive

我希望章节号和标题在同一行,不带 Chapter 一词,如“1. 简介”,并针对书籍类文档居中对齐。我在这里看到了解决方案:章节号和章节标题在一行中,使标题左对齐。我想知道我可以添加或更改什么来使其居中对齐。

答案1

使用Alan Munn 的回答texdoc titlesec建议

\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}[block] 
{\normalfont\huge\bfseries\filcenter}{\chaptertitlename\ \thechapter:}{1em}{} 

\begin{document}
\chapter{A chapter}
\section{A section}
\end{document}

相关内容