-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdm.cls
99 lines (76 loc) · 2.28 KB
/
sdm.cls
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
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
\ProvidesClass{sdm}[2015/02/02 v0.1 LaTeX document class for Universite Rennes 1]
%extension de article
\LoadClassWithOptions{article}
\RequirePackage{fullpage}
\RequirePackage{graphicx}
\def\supervisorOne#1{\gdef\@supervisorOne{#1}}
\def\supervisorTwo#1{\gdef\@supervisorTwo{#1}}
\def\team#1{\gdef\@team{#1}}
\def\school#1{\gdef\@school{#1}}
\def\domain#1{\gdef\@domain{#1}}
\def\abstract#1{\gdef\@abstract{#1}}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\renewcommand{\maketitle}{
\begin{titlepage}
\begin{center}
% Upper part of the page
\includegraphics[width=0.8\textwidth]{./header}\\[1cm]
\textsc{\Large Master research Internship}
\vspace{1cm}
\includegraphics[width=0.09\textwidth]{./rennes1}
\includegraphics[width=0.09\textwidth]{./ens-Rennes}
\includegraphics[width=0.1\textwidth]{./insa-rennes}
\includegraphics[width=0.08\textwidth]{./supelec}
\includegraphics[width=0.06\textwidth]{./esir}
\includegraphics[width=0.07\textwidth]{./enssat}
\includegraphics[width=0.05\textwidth]{./logoUbs}
\vspace{1cm}
\textsc{\Large Bibliographic report }\\[0.5cm]
%\textsc{\Large Internship report }\\[0.5cm]
% The title of your report
\HRule \\[0.4cm]
{ \Large \bfseries {\@title} }\\[0.4cm]
\HRule \\[1.5cm]
% The domain of your research
%\textbf{KEEP WITHIN THIS LIST (see model.tex) ONE OR TWO DOMAIN(S) THAT CORRESPOND(S) TO YOUR INTERNSHIP - COMMENT OR REMOVE ALL THE OTHER ONES -}
\begin{flushleft}
\textbf{\@domain}
\end{flushleft}
%
% Author and supervisor(s)
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Author:}\\
\@author
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\emph{Supervisor:} \\
%
% name(s) of your supervisor(s)
\@supervisorOne\\
\@supervisorTwo\\
% Name of your team
\@team
\end{flushright}
\end{minipage}
\vfill
% INCLUDE HERE THE LOGO OF YOUR INSTITUTION
%\textbf{INSERT ``\%'' IN FRONT OF ALL THE LOGO YOU DO NOT NEED - A SINGLE ONE SHOULD REMAIN AT THE BOTTOM OF THIS PAGE}
\begin{flushleft}
\includegraphics[width=0.09\textwidth]{\@school}
\end{flushleft}
\end{center}
\end{titlepage}
\begin{flushleft}
\textbf{Abstract:} \@abstract
\end{flushleft}
%\newpage
% compile twice to get the table of contents
\tableofcontents
\thispagestyle{empty}
\newpage
\setcounter{page}{1}
}