-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
executable file
·95 lines (76 loc) · 2.61 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
\documentclass[10pt, a4paper]{scrartcl}
%\usepackage{a4wide} %Platzintensiver
\usepackage[german,ngerman]{babel} %Deutsche Silbentrennung
\usepackage[utf8]{inputenc} %Damit kann man auch Umlaute direkt eintippen
\usepackage{textcomp}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{graphicx} %including images
\usepackage{fancyhdr} %for editiable headers and footers
\usepackage{setspace} %for 1,5times row space
\usepackage{color}
\definecolor{darkblue}{rgb}{0,0,.5}
\usepackage[colorlinks,pdfpagelabels,pdfstartview = FitH,bookmarksopen = true,bookmarksnumbered = true,linkcolor = darkblue,plainpages = false,hypertexnames = false,citecolor = black, linkcolor=darkblue, menucolor=darkblue, pagecolor=darkblue, urlcolor=darkblue] {hyperref}
%clickable TOC
\usepackage{multirow} %linebreak in Table
\usepackage{enumerate}
\usepackage{float}
\usepackage{colortbl} %colorTables
\usepackage{framed} %begin{framed}
\usepackage{longtable} %begin{longtable}
\usepackage{makeidx}
\usepackage[square]{natbib}
\usepackage{epigraph}
% Eigenes PHP Syntax-HL
\usepackage{listings}
\usepackage{caption}
\usepackage[dvipsnames]{xcolor}
\usepackage[nottoc]{tocbibind}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%5
%% Metainfos
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\ownTitle}{Diplomarbeit}
\newcommand{\ownTitleZ}{Testgetriebene Entwicklung von Web-Serveranwendungen auf der Basis von Ruby on Rails}
\newcommand{\ownAutor}{Stefan Wienert, HTW Dresden}
\title{\ownTitle}
\author{\ownAutor}
\pdfinfo{
/Title (\ownTitle)
/Author (\ownAutor)
/Subject (\ownTitleZ)
/Keywords()
}
\date{\today}
\onehalfspacing
\setlength{\epigraphwidth}{.8\textwidth}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% HEAD AND FOOTLINES
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{fancy}
\renewcommand{\sectionmark}[1]{\markboth{\thesection\ #1}{}}
\renewcommand{\subsectionmark}[1]{\markright{\thesubsection\ #1}}
\lhead[ \leftmark ]{\textbf{\ownTitle}}
\rhead[\textbf{\ownTitleZ}]{\leftmark}
\lfoot[\thepage ]{\scriptsize \textcopyright2011, \ownAutor}
\cfoot[]{}
\rfoot[\scriptsize \textcopyright2011, \ownAutor]{\thepage}
\renewcommand{\footrulewidth}{0.5pt}
\definecolor{Gray}{rgb}{0.85,0.85,0.90}
\include{custom_commands}
\makeindex %start Aufzeichnun eines Stichwortverzeichnisses
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%\maketitle
\include{parts/00-frontpage}
\pagenumbering{Roman}
\include{parts/intro/preambel}
\setcounter{page}{1}
\pagenumbering{arabic}
\input{parts/gliederung}
\setcounter{page}{1}
\pagenumbering{roman}
\include{parts/99-appendix}
\end{document}