-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.tex
43 lines (37 loc) · 1003 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
\documentclass[DIV10]{scrreprt}
\usepackage{fourier}
\usepackage{url}
\usepackage[sectionbib]{chapterbib}
\usepackage[sectionbib,square]{natbib}
\usepackage{tikz}
\usetikzlibrary{arrows,positioning}
\definecolor{NavyBlue}{cmyk}{0.94,0.54,0,0}
\usepackage[raiselinks=true,%
colorlinks=true,%
linkcolor=NavyBlue,%
menucolor=NavyBlue,%
citecolor=NavyBlue,%
urlcolor=NavyBlue,%
bookmarks=true,%
bookmarksopenlevel=1,%
bookmarksopen=true,%
bookmarksnumbered=true,%
hyperindex=true,%
plainpages=false,%
pdfpagelabels=true,%
]{hyperref}
\newcommand{\code}[1]{\texttt{#1}}
\setkomafont{title}{\bfseries}
\setkomafont{disposition}{\bfseries}
\begin{document}
\bibliographystyle{plainnat}
\setcitestyle{numbers}
\title{A Trip Through The Graphics Pipeline 2012}
\author{Fabian Giesen}
\maketitle
\tableofcontents
% Include the chapters
\include{intro}
\include{sw_stack}
\include{memory}
\end{document}