如何将章节标签对齐在右侧并将章节标题对齐在左侧

如何将章节标签对齐在右侧并将章节标题对齐在左侧

我想将章​​节标签对齐到页面右侧,将章节标题对齐到页面左侧。我该如何执行以下命令:

\chapter{Introduction}

输出应该是这样的 在此处输入图片描述

答案1

这并不难titlesec

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

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern} 
\usepackage{lipsum}
\usepackage{titlesec}%

\titleformat{\chapter}[display]{\sffamily\huge\bfseries}{\filleft\chaptername \thechapter}{4ex}{}[{\titlerule[1.5pt]}]

\begin{document}

\chapter{Introduction}
\sffamily
\lipsum[11]

\end{document} 

在此处输入图片描述

相关内容