-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile_caching_mohlerm_bku.tex
127 lines (99 loc) · 4.47 KB
/
profile_caching_mohlerm_bku.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
% -------------------------------------------------------------------------------------------------
%
% Skeleton for semester and master thesis reports at the Laboratory for Software Technology.
% Based on the skeleton provided by the Institute of Robotics and Intelligent Systems.
%
% -------------------------------------------------------------------------------------------------
%
% USAGE: compile with PDFLaTeX
%
% HISTORY: - written by Sascha A. Stoeter <[email protected]>, www.stoeter.com, 02.06.2004
% - modified by Martin Probst, 18.08.2004
% - extended and adapted for use at LST by Oliver Trachsel, 2007-08-21
% -------------------------------------------------------------------------------------------------
\documentclass[11pt,a4paper]{book}
\usepackage{lstreport}
% -------------------------------------------------------------------------------------------------
% Add needed packages. Some generally useful packages are listed for
% your convenience.
% -------------------------------------------------------------------------------------------------
\usepackage{subfigure} % enable the use of subfigures
\usepackage[thickspace,thinqspace]{SIunits} %
\usepackage{listings} % to embed source code
% Include pdf documents
\usepackage{pdfpages}
% Use UTF8
\usepackage[utf8x]{inputenc}
% Space after \texttrademark
\usepackage{xspace}
\let\OldTexttrademark\texttrademark
\renewcommand{\texttrademark}{\OldTexttrademark\xspace}%
% Use links in the table of contents
\usepackage{hyperref}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
% -------------------------------------------------------------------------------------------------
% Select type of thesis
% -------------------------------------------------------------------------------------------------
\renewcommand{\thesistype}{Bachelor}
%\renewcommand{\thesistype}{Diploma}
%\renewcommand{\thesistype}{Master}
%OWN STUFF###############################################################
\usepackage[english]{babel}
% colors
\definecolor{orange}{rgb}{1,0.5,0}
% Disable single lines at the start of a paragraph (Schusterjungen)
\clubpenalty = 10000
% Disable single lines at the end of a paragraph (Hurenkinder)
\widowpenalty = 10000
\displaywidowpenalty = 10000
% allows for colored, easy-to-find todos
\newcommand{\todo}[1]{\textsf{\textbf{\textcolor{orange}{[[TODO: #1]]}}}}
%##########################################################################
% -------------------------------------------------------------------------------------------------
% Set names
% -------------------------------------------------------------------------------------------------
\renewcommand{\thesisauthor}{Marcel Mohler}
\renewcommand{\thesisadvisor}{Prof. Thomas Gross}
% -------------------------------------------------------------------------------------------------
% Beginning of the main document body
% -------------------------------------------------------------------------------------------------
\begin{document}
% include all Bib-items even if they're not cited in the text
\nocite{*}
% -------------------------------------------------------------------------------------------------
% Front matter with title page, table of contents, and abstracts
% -------------------------------------------------------------------------------------------------
\frontmatter
% Title page: set title and date
\thesistitlepage{Profile Caching for the\\Java Virtual Machine
}{August 2015}
% Declaration of originality
%\includepdf{figures/confirmation_plagiarism_en.pdf}
% Abstract must not be longer than one page per language. English and
% German abstracts are mandatory.
\chapter*{Introduction}
\input{introduction.tex}
\chapter{Acknowledgments}
\input{acknowledgments.tex}
% Table of contents
\tableofcontents
% -------------------------------------------------------------------------------------------------
% Main document body
% -------------------------------------------------------------------------------------------------
\mainmatter
\chapter{Motivation}
\label{s:Motivation}
\section{Motivation}
\label{s:motivation}
% -------------------------------------------------------------------------------------------------
% Bibliography
% -------------------------------------------------------------------------------------------------
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{bibliography}
\end{document}