Advertisement
Hazem09

Title page

Apr 18th, 2024
779
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.77 KB | None | 0 0
  1. \documentclass[12pt]{report}
  2. \setcounter{secnumdepth}{5}
  3. \setcounter{tocdepth}{2}
  4. \setcounter{secnumdepth}{3}
  5. \usepackage{graphicx}
  6. \usepackage{color}
  7. \usepackage[utf8]{inputenc}
  8. \usepackage[french]{babel}
  9. \usepackage[T1]{fontenc} %font package
  10. \usepackage{courier}
  11. \usepackage{listings}
  12. \usepackage{geometry}
  13. \usepackage{amsmath}
  14. \usepackage{minted}
  15. \usepackage{array}
  16. \usepackage{tikz}
  17. \usepackage{tabularx}
  18. \usepackage{ragged2e}
  19. \usepackage[sorting=nyt]{biblatex}
  20. \addbibresource{bibio.bib}
  21. \definecolor{lightgray}{gray}{0.5}
  22. %\setlength{\parindent}{0pt} indent size
  23.  
  24. \definecolor{mygreen}{rgb}{0,0.6,0}
  25. \definecolor{mygray}{rgb}{0.5,0.5,0.5}
  26. \definecolor{mymauve}{rgb}{0.58,0,0.82}
  27. \usepackage{hyperref}
  28. \hypersetup{
  29.    colorlinks=true,
  30.    linkcolor=black,
  31.    filecolor=magenta,      
  32.    urlcolor=cyan,
  33.    citecolor=black,
  34.    pdftitle={Overleaf Example},
  35.    }
  36. \graphicspath{ {figures/} }
  37.  
  38.  
  39. \usetikzlibrary{shapes.geometric , arrows,calc}
  40. \lstset{ %
  41.   backgroundcolor=\color{white},   % choose the background color
  42.   basicstyle=\footnotesize,        % size of fonts used for the code
  43.   breaklines=true,                 % automatic line breaking only at whitespace
  44.   captionpos=b,                    % sets the caption-position to bottom
  45.   commentstyle=\color{mygreen},    % comment style
  46.   escapeinside={\%*}{*)},          % if you want to add LaTeX within your code
  47.   keywordstyle=\color{blue},       % keyword style
  48.   stringstyle=\color{mymauve},     % string literal style
  49. }
  50.  
  51. \geometry{scale=0.75,top=2cm,bottom=2cm}
  52.  
  53. \begin{document}
  54. \begin{titlepage}
  55. \newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
  56. \center
  57.  
  58. \textsc{\small \textbf{république algérienne démocratique et populaire
  59. ministre de l'enseignement supérieure et de la recherche scientifique
  60. université des sciences et de la technologie Houari Boumediene}}\\[0.5cm]
  61.  
  62.  
  63.  
  64. \includegraphics[scale=0.17]{logousthb1.png}\\[1cm]
  65.  
  66. \textsc{\Large Faculté de mathématique}\\[0.5cm] % Major heading such as course name
  67. \textsc{\large Département de Recherche Opérationnelle}\\[0.5cm] % Minor heading such as course title
  68. {\large \bfseries MSPRO Master 2}\\[0.5cm]
  69. {\huge \bfseries TIC }\\[0.5cm]
  70.  
  71.  
  72. \HRule \\[0.4cm]
  73. { \huge \bfseries Identification de Modèle Autorégressif Périodique à l'Aide d'Algorithmes Génétiques}\\[0.4cm] % Title of your document
  74. \HRule \\[1.5cm]
  75.  
  76. \begin{minipage}{0.4\textwidth}
  77. \begin{flushleft} \large
  78. \emph{Réalisé par:}\\
  79.  
  80.  
  81. \textsc{BOUSTILA} Abdennour\\
  82. \textsc{BRAHIMI} Hazem \\
  83. \end{flushleft}
  84. \end{minipage}
  85. ~
  86. \begin{minipage}{0.4\textwidth}
  87. \begin{flushright} \large
  88. \end{flushright}
  89. \end{minipage}\\[4.0cm]
  90.  
  91. {\large \today}\\
  92.  
  93. \end{titlepage}
  94.  
  95. \pagenumbering{roman}
  96. \tableofcontents
  97.  
  98. \listoffigures
  99. \listoftables
  100.  
  101.  
  102. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement