-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
122 lines (100 loc) · 2.91 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
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
\documentclass[a4paper, 11pt]{scrreprt}
\usepackage[a4paper, top=2cm]{geometry} % Use A4 paper size
\usepackage{color} % Required for color customization
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{url}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{float}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{tikz}
\usepackage[section]{placeins}
\usepackage[justification=centering]{caption}
\usepackage{calc}
\usepackage[nomessages]{fp}
\usepackage{parskip}
\usepackage{bold-extra} % that's new
\usepackage{setspace}
\usepackage{fancyhdr}
\usepackage{titlesec}
\usepackage{lmodern}
\usepackage[T1]{fontenc} % optional
\usepackage{lmodern}
\usepackage[utf8]{inputenc}
\usepackage[cmintegrals]{newtxmath}
\usepackage{bm} % optional
\usepackage{listings}
\usepackage{listings-ext}
\usepackage{glossaries}
\usetikzlibrary{positioning}% for positioning of nodes
\usetikzlibrary{shapes, arrows, shapes.geometric, shadows,positioning}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{customVhdl}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstset{style=customVhdl}
\usepackage[
pdftitle={Dynamic Partial Reconfiguration for Fault-Tolerance in automotive ECUs},
pdfauthor={Constantin Schieber, Rupert Schorn, Andreas Hirtenlehner, Peter Schober},
pdfsubject={Documentation},
colorlinks=true,
hyperindex=true,
plainpages=false,
pdfpagelabels=true,
bookmarksopen=false,
linktocpage=true
]{hyperref}
\DeclareUnicodeCharacter{2011}{-}
\makeglossaries
\loadglsentries{glsEntries}
%\usetikzlibrary{external}
%\tikzexternalize % activate!
\newlength{\smallColumnWidth}
\setlength{\smallColumnWidth}{\columnwidth-2cm}%
\input{./tex/page_style.tex}
\begin{document}
\pagestyle{plain}
\input{./tex/Title.tex}
\cleardoublepage
\pagenumbering{Roman}
{
\tableofcontents
\newpage
\input{./tex/Abstract.tex}
\cleardoublepage
}
\pagenumbering{arabic}
\input{./tex/Introduction.tex}
\input{./tex/CortexM1.tex}
\input{./tex/Bus.tex}
\input{./tex/TestSetup.tex}
\input{./tex/PartialReconfiguration.tex}
%\input{./tex/Organization}
\input{./tex/Results.tex}
\input{./tex/Conclusion.tex}
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,SoCLabor}
\end{document}