我应该如何根据我的规范来格式化书籍的标题?

我应该如何根据我的规范来格式化书籍的标题?

我想手动格式化我的书的页眉,奇数页上有章节名称和编号,偶数页上有章节名称和编号,如下图所示带有章节名称和编号的偶数页带有章节名称和编号的奇数页

答案1

解决方案如下titlesec/titleps

\documentclass[12pt, openany]{book}%

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[x11names]{xcolor}
\usepackage[pagestyles]{titlesec}
\usepackage{lipsum}

\newpagestyle{mine}{%
\newcommand*\hdrformat{\color{SlateGray4}\sffamily}
\sethead[\hdrformat\thesection~\sectiontitle\,$\mathbf]$][][\hdrformat\thepage.]{\hdrformat\thepage.}{}{\hdrformat$[$\,\chaptername~\thechapter}
\setfoot{}{}{}
}
\pagestyle{mine}

\begin{document}
\setcounter{page}{1}

\chapter{First Chapter}
\lipsum[1-3]
\section{My Section}
\lipsum[4-8]

\end{document} 

在此处输入图片描述

在此处输入图片描述

相关内容