喜欢章节标题-单面版本吗?

喜欢章节标题-单面版本吗?

我想创建像书中给出的单面论文的标题(可以在以下链接中看到),我试图更改 Martin 在以下链接中给出的代码,但没有得到期望的输出

精美的章节标题

这是马丁的代码:

\documentclass{book}
\usepackage{graphics}

\usepackage{titlesec}
\titleformat{\chapter}[display]
  {\normalfont\Large\raggedleft}
  {\MakeUppercase{\chaptertitlename}%
    \rlap{ \resizebox{!}{1.5cm}{\thechapter} \rule{5cm}{1.5cm}}}
  {10pt}{\Huge}
\titlespacing*{\chapter}{0pt}{30pt}{20pt}

\usepackage{lipsum}
\setcounter{chapter}{2}
\begin{document}

\chapter{Implementation}
\lipsum
\end{document}

目前的情况如下:

在此处输入图片描述

我正在尝试将打印输出从右侧更改为左侧,我应该如何修改代码?我只想在中心写入黑框,然后写入章节编号,然后按 ENTER 键,然后写入章节名称。

答案1

干得好。

\documentclass[oneside]{book}
\usepackage{graphics}

\usepackage{titlesec}
\titleformat{\chapter}[display]
  {\normalfont\Large\raggedright}
  {\hspace{0cm}\llap{%
    \rule{5cm}{1.5cm}\hspace{0.2cm}\resizebox{!}{1.5cm}{\thechapter}\hspace{0.2cm}}%
    \MakeUppercase{\chaptertitlename}}
  {10pt}{\Huge}
\titlespacing*{\chapter}{0pt}{30pt}{20pt}

\usepackage{lipsum}
\setcounter{chapter}{2}
\begin{document}

\chapter{Implementation}
\lipsum
\end{document}

在此处输入图片描述

相关内容