forked from stoufa/ISI-LaTeX-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
85 lines (64 loc) · 2.27 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
%========= File containing the main LaTex document ========%
% %
% Copyright (C) ISI - All Rights Reserved %
% Proprietary %
% Written by Med Hossam <[email protected]>, April 2016 %
% %
% @author: HEDHILI Med Houssemeddine %
% @linkedin: http://tn.linkedin.com/in/medhossam %
%==========================================================%
%\documentclass[pfe]{./tpl/isipfe}
\documentclass[]{./tpl/isipfe}
\graphicspath{{./img/}}
%\usepackage{hyperref}
\input{./tpl/new_commands}
% @author: Stoufa
% the command `\makeindex` is mandatory to create the index file main.idx
% https://tex.stackexchange.com/questions/9913/input-index-file-not-found
\makeindex
\begin{document}
\input{global_config}
\frontmatter
\input{tpl/cover_page}
\include{tpl/cover_page_black}
\input{tpl/signatures}
\setcounter{page}{1}
\input{dedicaces}
\thispagestyle{frontmatter}
\input{remerciement}
\thispagestyle{frontmatter}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{2}
\dominitoc
\tableofcontents
\adjustmtc
\thispagestyle{frontmatter}
\listoffigures
\thispagestyle{frontmatter}
\listoftables
\thispagestyle{frontmatter}
\input{acronymes}
\thispagestyle{frontmatter}
\mainmatter
\input{introduction}
\clearpage
\input{chap_01}
\clearpage
\input{chap_02}
\clearpage
\input{chap_03}
\clearpage
\input{chap_04}
\clearpage
\input{conclusion}
\clearpage
% @author: Stoufa
% the command `\nocite{*}` is mandatory to avoid the “no \citation commands” error
% https://tex.stackexchange.com/questions/18045/problem-with-compiling-bibtex-no-citation-commands-error
%\nocite{*}
\printbibliography[heading=bibintoc]
\input{annexes}
\clearpage
\backmatter
\input{./tpl/resume}
\end{document}