0

I have a lot of trouble recreating a chapter title just like this one:Desired output

I have tried using the fncychap packages. But I can't get to make the horizontal line appear or the title actually center.

Thanks in advance!

1 Answer 1

2

This can be done with the package titlesec.

\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}{\bfseries\Large}{Chapitre\quad\thechapter}{0mm}{\newline\hrule\vspace*{.5\baselineskip}\centering\uppercase}
\begin{document}
\setcounter{chapter}{3}
\chapter{Pricing european options in a discrete time model for the limit order book}
\end{document}
1
  • Thank you! I was able to achieve it using this method
    – Sakura
    Commented Jan 21, 2023 at 20:15

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .