0

I am trying to find the package used in this image to style the chapters of report. I tried all the options in fncychap with no luck. Can you tell what package is this ? enter image description here

U. User
  • 159
  • 3
    The author might have customized a template for his own needs... In this case there is little chance to find it on the web. – Tobard May 18 '18 at 15:10
  • If you need to identify the font, check this: https://tex.stackexchange.com/questions/45919/how-do-i-find-out-what-fonts-are-used-in-a-document-picture – G. Bay May 18 '18 at 20:18
  • For the font, I it looks a little similar to cmbright, but it's only similar. What do you think ? – U. User May 20 '18 at 14:41

1 Answers1

3

Here is something to get you started using titlesec.

\documentclass{report}

\usepackage{titlesec}
\renewcommand{\thechapter}{\arabic{chapter}}
\titleformat{\chapter}[display]
{\titlerule[2pt]
\vspace{4ex}\bfseries\sffamily\large}
{\filleft\Huge\thechapter}
{2ex}
{\filleft}

\begin{document}

\chapter{Introduction}

\end{document}

enter image description here

AML
  • 2,265
  • Which means I have to customize everything, including. Chapters, Chapters with no numbers, contents.. Thanks you ! – U. User May 20 '18 at 14:36