5

i would like to change the "chapter" style of the documentclass "report" to read something like

1. Introduction

in stead of

Chapter 1


Introduction

Can anyone help me with this? Do I need titlesec or is fncychap enough?

Kind regards

Thomas
  • 525

1 Answers1

5

With fancychap you have limited styles. On the other hand titlesec can help you to design whatever you want. Further, if you use fancychap, you will be making the Italian TeX guru (aka egreg) unhappy (which I won't do) ;-)

Here is a sample with titlesec. Adjust the lengths as you like.

\documentclass{report}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries}{}{0pt}{\Huge\thechapter.\hskip0.5em}
\titleformat{name=\chapter,numberless}[display]
{\normalfont\huge\bfseries}{}{0pt}{\Huge}
\titlespacing*{\chapter} {0pt}{0pt}{40pt}
\titlespacing*{name=\chapter,numberless} {0pt}{0pt}{40pt}
\begin{document}
  \tableofcontents
  \chapter{Introduction}
\end{document} 

enter image description here