main.tex 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. \documentclass{book}
  2. % main preambule
  3. \usepackage[utf8]{inputenc}
  4. \usepackage[T1]{fontenc}
  5. \usepackage[french]{babel}
  6. % other packages
  7. \usepackage{graphicx}
  8. \usepackage{subcaption}
  9. \usepackage{csquotes}
  10. \usepackage[locale=FR]{siunitx}
  11. \usepackage[toc,page]{appendix}
  12. \usepackage{hyperref}
  13. \usepackage{biblatex}
  14. \addbibresource{references.bib}
  15. \title{Rapport CST : \textit{Détection de
  16. bruit dans les images de synthèses
  17. stéréoscopiques par méthodes d’apprentissage
  18. automatiques}}
  19. \author{Jérôme BUISINE}
  20. \date{July 2019}
  21. \begin{document}
  22. \maketitle
  23. \tableofcontents
  24. \listoffigures
  25. \listoftables
  26. % Section 1 : Introduction
  27. \include{01.Introduction/Introduction}
  28. % Section 2 : Bibliography
  29. \include{02.Bibliography/Bilbiography}
  30. % Section 3 : Research
  31. \include{03.Research/00.Research}
  32. \include{03.Research/01.SVD}
  33. \include{03.Research/02.OthersAttributes}
  34. \include{03.Research/03.SampleAnalysis}
  35. \include{03.Research/04.FutureWorks}
  36. % Section 4 : enseignements
  37. \chapter{Enseignements}
  38. \begin{itemize}
  39. \item \textbf{L1 Mathématiques :} Fondements de l'algorithmique (19.38 Eq TD)
  40. \item \textbf{L2 Informatique :} Algorithmique avancée en C++ (12 Eq TD)
  41. \item \textbf{DUT 1\iere{} année Informatique :} Bases de la POO (28 Eq TD)
  42. \end{itemize}
  43. % Section 5 : formations
  44. \include{05.Formations/Formation}
  45. \chapter{Conclusion}
  46. \chapter{References}
  47. \printbibliography
  48. \begin{appendices}
  49. \include{Annexes/lab}
  50. \include{Annexes/MSCN}
  51. \include{Annexes/Models}
  52. \end{appendices}
  53. \end{document}