LaTeX 中章节名称前的章节编号

LaTeX 中章节名称前的章节编号

我试图在第 1 章开始的页面上获取此信息。我正在使用标准书籍类。如何在 ChapterName 之前获取 1.。

在此处输入图片描述

答案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}

相关内容