[Tex/LaTex] Description of a chapter in a page

chaptersdescriptionsectioning

I would like to decorate my headlines (section, subsection, etc.) by adding foreach a chapter a description area.

This picture is a screenshot document where the headline has the formating, layout and color I want.enter image description here

How I can achieve this? Any help would be much appreciated.

Best Answer

Have a look at fncychap package.

You can build your own chapter-styles:

\documentclass{report}
\usepackage[explicit]{titlesec}
\usepackage{lipsum}
\usepackage{type1cm}
\usepackage{xcolor}
\usepackage{lettrine}


\titleformat{\chapter}[display]
  {\normalfont\Large\sffamily}
  {\flushright\fontsize{90}{0}\textbf{\textcolor{black!20}{\thechapter}}}{10pt}
  {\flushright\fontsize{30}{0}\textbf{#1}\vskip80pt\rule{\textwidth}{2pt}}
\titlespacing*{\chapter}
  {0pt}{-40pt}{0pt}

\begin{document}
\chapter{Introduction}

\lettrine[lines=4]{\color{black!20}S} tart of the chapter. \lipsum[1]
\end{document}