-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
50 lines (35 loc) · 910 Bytes
/
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
\documentclass[12pt]{article}
% math packages
\usepackage{amsmath, amsthm, amssymb, amsfonts}
% graphics packages
\usepackage{graphicx}
% code packages
\usepackage{listings}
% language packages
\usepackage[italian]{babel}
% page geometry
\usepackage[a4paper, portrait, margin=0.85in]{geometry}
% links
\usepackage[colorlinks]{hyperref}
\begin{document}
\title{
Vehicular communications
}
\author{Ollari Ischimji Dmitri}
\maketitle
% Setup hyperref package
\hypersetup{
linkcolor=black, % Color of internal links
filecolor=black, % Color of file links
urlcolor=black, % Color of URLs
citecolor=black % Color of citations
}
\newpage
\tableofcontents
% \listoffigures
% \listoftables
\include{chapters/01_introduction}
\include{chapters/02_network_basics}
\include{chapters/03_intra_vehicle_communications}
\include{chapters/04_extra_vehicular_communications}
\end{document}