如何让左侧显示“chapter.1”,右侧显示“Chapter Title”

如何让左侧显示“chapter.1”,右侧显示“Chapter Title”

我在 TexStudio 中使用了一个模板,它定义了一组花式高清规则。但我想改变章节标题的布局:将第一章放在左侧,将章节标题放在右侧(见附图)。

有什么办法可以推翻已定义的设置吗?因为下面的声明非常长fancyhdr.sty文件,我不确定要更改哪一部分。标题布局

答案1

以下是使用 来实现此目的的一种方法titlesec*in\titlespacing可抑制章节开头的缩进。

\documentclass{book}
\usepackage{titlesec, graphicx, geometry, titlecaps}

%Chapter Headers%
\titleformat{\chapter}[display]{}{\normalfont\Large\scshape\titlecap{\chaptertitlename}\enspace\scalebox{1.8}{\thechapter}\filright} {8ex}{\Huge\bfseries\sffamily\filleft}[{\titlerule[1pt]}]
\titlespacing*{\chapter}{0pt}{30pt}{20pt}

\begin{document}

\chapter{Introduction}

\end{document} 

在此处输入图片描述

相关内容