Code: Select all
\documentclass[a4paper,oneside,11pt]{book}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[francais]{babel}
\usepackage{graphics}
\usepackage{slashbox}
\usepackage{graphicx}
\usepackage{rotating}
\usepackage{indentfirst}
\usepackage{multirow}
\usepackage{caption}
\usepackage{color}
\definecolor{monOrange}{rgb}{0.97,0.35,0.04}
\usepackage{colortbl}
\usepackage[dvipsnames]{xcolor}
\usepackage{longtable}
\xdefinecolor{sss}{named}{Cerulean}
\setlength\arrayrulewidth{1pt}
\addto\captionsfrench{\def\tablename{Tableau}}
\usepackage[top=2cm,bottom=2cm,right=2.5cm,left=2.5cm]{geometry}
\graphicspath{{Figures/}}
\usepackage[pdfstartview=FitH,colorlinks=true,linkcolor=black,citecolor=black, urlcolor= black]{hyperref}
\pagestyle{empty}
\let\cleardoublepage\clearpage
\begin{document}
\frontmatter
\begin{titlepage}
%page de garde
\end{titlepage}
\thispagestyle{empty}
\include{./Remerciement/remerciement}
\tableofcontents
\listoffigures
\listoftables
\mainmatter
\include{./Chapitres/chp1}
\part{\emph{Etat de l'art}}
\label{sec:EtatDeLArt}
\include{./Chapitres/chp2}
\include{./Chapitres/chp4}
\part{\emph{Contribution}}
\label{sec:Contribution}
\include{./Chapitres/chp5}
\include{./Chapitres/chp6}
\include{./Chapitres/ConclusionGénérale}
\bibliographystyle{plain}
\bibliography{MaBiB}
\addcontentsline{toc}{chapter}{Bibliographie}
\cleardoublepage
\appendix
\addtocontents{toc}{\protect\setcounter{tocdepth}{1}}
\addcontentsline{toc}{chapter}{Annexes}
\include{./Annexes/AnnexeChapitre2}
\include{./Annexes/AnnexeChapitre4}
\include{./Annexes/Annexe1}
\backmatter
\end{document}
Also, I have a problem with the connection between the word "Annexe" in the table of contents. By clicking on the word, I move to "Bibliographie" and not on the first appendix.
The last problem is that I want to have in the table of contents the titles of Annex. But, with this code sections are displayed. I like to make them disappear. I try with the section*{SectionName} but with this section numbers disappear in the corresponding chapters in the Annex.
Thank you for helping me to solve these problems.