答案1
使用titleformat
包中的命令标题安全. 有关更多信息,请参阅文档第 3 章。
\titleformat{hcommandi}[hshapei]{hformati}{hlabeli}{hsepi}{hbefore-codei}[hafter-codei]
一个最小的例子。
\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}[hang]{\Huge\bfseries}{\thechapter{. }}{0pt}{\Huge\bfseries}
\begin{document}
\chapter{Chapter Name}
test
\end{document}
第 1 章也应该有
\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}[display]{\bfseries\Large}{\chaptertitlename \hspace{2ex}\thechapter}{4ex}{\thechapter \hspace{2ex}}[]
\begin{document}
\chapter{Chapter Name}
test
\end{document}
或者在回忆录课上
\documentclass{memoir}
\chapterstyle{crosshead}
\begin{document}
\chapter{Chapter Name}
test
\end{document}