如何让章节标题与章节编号重叠?

如何让章节标题与章节编号重叠?

我的意思是...像这样

在此处输入图片描述

如果尝试了很多事情:overpic,,,......但没有运气textpostikztitlesec

答案1

像这样吗?

\documentclass[12pt, a4paper]{book}

 \usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{cabin}
\usepackage{microtype}
\usepackage{graphicx}
\usepackage[svgnames]{xcolor}
\usepackage{lipsum}

\usepackage{titlesec}%

\titleformat{\chapter}[display]
 {\bfseries\huge\sffamily\lsstyle\SetTracking[no ligatures = {f}]{encoding = *}{50}\filleft}
 {\scalebox{5}{\color{Gainsboro}\thechapter}\enspace}
 {-5.2ex}
 {\MakeUppercase}%
\titlespacing*{\chapter}{0pt}{-60pt}{10ex}

\begin{document}

\chapter{QUÉ ES ANSIBLE}

\lipsum[1]

\end{document} 

在此处输入图片描述

相关内容