I am a beginner of LaTEX. Because some reasons, I need to change my thesis from word to Latex in some days. I would like to ask how to make a chapter like this? Thank you very much!!!
Thanks for people's help. I know how to change the chapter style.But I still wonder how to add a small content following the chapter. I tried to use the mintoc package but it failed. The small table of content didn't show. How can I solve this problem? Thanks!!!
\documentclass[twosides]{book}
\usepackage{graphics}
\usepackage{color,calc,graphicx,soul,fourier}
\usepackage{calc}
\usepackage{titlesec}
\usepackage{titletoc}
\usepackage{minitoc}
\usepackage{tikz}
\usepackage{lipsum}
\titleformat{\chapter}%[display]
{\normalfont\fontsize{25}{30}\selectfont\raggedright}% Format and size of title text
{\llap{%
\rule[-6pt]{6cm}{1.3cm}\rule{6pt}{0pt}}% Black box to the left, lowered 6pt. The end rule is a horisontal space.
\llap{% Number also to the left, on top of the black box.
\fontsize{40}{44}\selectfont\color{white}\thechapter\rule{10pt}{0pt}}}
{0pt}
{}{}
\titlespacing*{\chapter}
{0pt}{50pt}{10pt}
\setcounter{chapter}{1}
\chapter{A long chapter heading that does not fit in one row}
\begin{document}
\dominitoc
\tableofcontents
\section{A test section}
\lipsum[4]
\subsection{A test subsection}
\lipsum[4]
\minitoc
\end{document}



