左侧为章节号,右侧为章节标题

左侧为章节号,右侧为章节标题

有没有简单的方法可以获得以下标题格式: 在此处输入图片描述

我曾尝试过标题安全,但我对结果并不满意:

\documentclass{book}
\usepackage{titlesec}

%Chapter Headers%
\titleformat{\chapter}[display]{}{\Large{\chaptertitlename}\enspace{\thechapter}\filright} {1ex}{\Huge\filleft}[{\titlerule[1pt]}]
\titlespacing*{\chapter}{0pt}{30pt}{20pt}

\begin{document}

    \chapter{Lorem}

\end{document}  

答案1

\documentclass{book}
\usepackage{titlesec}

%Chapter Headers%
    \titleformat{\chapter}[display]
    {\vspace*{-10ex}\Large}
    {\thispagestyle{empty}\titleline[l]{\chaptertitlename\ \thechapter}\vspace{6pt}\titlerule[.8pt]}    {\dimexpr-\baselineskip+6pt\relax}
    {\bfseries\filleft}



\begin{document}

\chapter{Lorem}

\end{document} 

相关内容