-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemoire-template.tex
138 lines (89 loc) · 2.52 KB
/
memoire-template.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
\documentclass[10pt]{report}
%% HEADER %%%%%%%%%%%%%%
% Geometry
\usepackage[left=3cm,right=3cm,top=2cm,bottom=2cm]{geometry}
\usepackage{setspace}
\onehalfspacing
% Figures and floats
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{float}
\usepackage{multirow}
\usepackage{subfigure}
% Appendix configuration
\usepackage[titletoc,title]{appendix}
% Math stuff
\usepackage{amsmath,amsthm,amssymb,amsopn,amsfonts}
\usepackage{color}
\usepackage{wrapfig}
\usepackage{blindtext}
\usepackage{booktabs}
\usepackage{xcolor}
\usepackage{verbatim}
% Language and font settings
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{xspace}
\usepackage{framed}
\usepackage{url}
% Define draft notes
\usepackage{comment}
%% Bibliography %%%%%%%%%%%%%%
% choose your favorite handler
% also modify the bibliography in the document
%% natbib:
% \usepackage[numbers]{natbib}
%% BibLaTeX + biber
\usepackage[backend=biber]{biblatex}
\addbibresource{my_bibliography.bib}
%% END OF HEADER %%%%%%%%%%%%%%
\begin{document}
%% TITLE PAGE %%%%%%%%%%%%%%
\begin{titlepage}
\begin{center}
{\large Université de Lausanne} \vspace{2 mm} \\
Faculté de Droit et des Sciences Criminelles \\
Institut de Police Scientifique \vspace{25 mm} \\
{\LARGE{Big title}}\vspace{10 mm}
\large{Name SURNAME}\vspace{150 mm}
\end{center}
Research supported by the Swiss National Science Foundation, through grant no. XXXX-XXXX
\end{titlepage}
%% TOC %%%%%%%%%%%%%%
\tableofcontents
%% Introduction (unnumbered) %%%%%%%%%%%%%%
\chapter*{Introduction}
% Add this manually to TOC
\addcontentsline{toc}{chapter}{Introduction}
\blindtext
\section*{An introductive section}
\addcontentsline{toc}{section}{An introductive section}
\blindtext
%% Chapters here %%%%%%%%%%%%%%
\chapter{First chapter}
\blindtext
\section{First section}
\blindtext
%% Bibliography %%%%%%%%%%%%%%
% include everything that was not cited!
\nocite{*}
%% Automatic insertion:
%% for natbib
% \bibliography{my_bibliography} % read from my_bibliography.bib
% \bibliographystyle{apalike}
%% For biblatex
\printbibliography
%% Manual insertion: embedded system
% \begin{thebibliography}{}
% \bibitem[Aitken and Gammerman, 1989]{aitken:1989}
% Aitken, C. and Gammerman, A. ({1989}).
% \newblock {Probabilistic Reasoning in Evidential Assessment}.
% \newblock {\em {Journal of the Forensic Science Society}},
% {29}:{303--316}.
% \end{thebibliography}
%% Appendix chapters %%%%%%%%%%%%%%
\appendix
\chapter{A chapter in Appendix}
\blindtext
\end{document}