summaryrefslogtreecommitdiff
path: root/main.tex
blob: b7b052a24a312cb2aceab3911f592b50bd6383a4 (plain)
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
\documentclass[a11paper, 11pt]{article}

\usepackage{document}
\usepackage{titlepage}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}

% Optional packages and tools (Uncomment to your needs)
\usepackage{toolbox}
\usepackage{french}

% Image insertion template:
%
% \begin{figure}[t!]
%     \centering
%     \includegraphics[width=0.45\textwidth]{/path/to/image.jpg}
%     \caption{Caption Text}
%     \label{fig: A Relateble Name}
% \end{figure}


% To add a bibliography, first make sure that your file
% is named "bibliography.bib" and then uncomment the
% following line.
%
%\addbibresource{bibliography.bib}


% Uncomment to compile links and references...
%
%\nofiles

%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
%                           Title Page Parameters                            %
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
\institution{Université de Sherbrooke}
\faculty{Faculté de ...}
\department{Département de ...}
\title{Titre du document}
\class{Nom du cour}
\classnb{ABC123}
\author{
  \addtolength{\tabcolsep}{-0.4em}
  \begin{tabular}{rcl} % Ajouter des auteurs au besoin
  Prénom1 Nom    & -- & CIP \\
  Prénom2 Nom    & -- & CIP \\
  \end{tabular}
}
\teacher{John Doe}
\location{Sherbrooke}
\date{\today}

%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
%                               Begin Document                               %
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%

\begin{document}
\maketitle
\newpage
\tableofcontents

\section{This is the first section}
This is some text...

\subsection{This is a subsection}
This is some more text!


\subsubsection{You probably guessed whthat this is a subsubsection}

\begin{table}[h!]
  \begin{tabular}{c c c}
    \hline
    item 1 &  item 2 &  item 3 \\ \hline \hline
    item 1 &  item 2 &  item 3 \\
    item 1 &  item 2 &  item 3 \\
  \end{tabular}
\end{table}

% \newpage
% \printbibliography[heading=bibintoc]
\end{document}